VBA Excel macro to set value from pivot table - excel

I have pivot table on excel,
where data source come from SSAS SQL,
i want to set automatic the date as date using macro VBA,
so when i hit a button the asofdate will change D-1 and retrive the data
i cant find the solution to use macro to set this date pivot

Related

recreate pivot table based on an existing one using vba

I know I can record a macro in excel to get the vba code when manually creating a pivot table.
But if I already have a manually created pivot table in an excel sheet - is there a way to now get the vba code to recreate an equally looking pivot table in another excel workbook (based on the same kind of but other data)?

Report connections for Pivot table slicer doesn't show all pivot tables?

I have 3 sheets with several pivot tables on each and one sheet with the source data. These 4 sheets were copied directly from another workbook. When I copied the worksheets over the source data for each pivot table was still the original source data sheet in the original workbook. Therefore, I changed each pivot table's source to the copied over raw data sheet. Whilst doing this I had to disconnect all the pivot table slicers in order to be able to change the source.
Now, this is where my problem lies; When I go back to reconnect the slicer only one of the pivot tables shows up in the list, when in fact I need to connect the slicer to several. What do I need to do?
Note: I did all of this using a macro that I created so I am open to using macros.
I was able to resolve this issue with the following steps;
Delete all slicers
Change the Table name:
For each pivot table, click on change data source button. The new name should already be in there so just press enter. If you didnt delete all slicers it will throw an error, indicating that it is only identifying other pivot tables with the same datasource now.
Create a new slicer and reconnect to all tables.
Note that step 2 may not be required but that is the workflow that I followed.
I had the same issue with not all pivots showing up and noticed that while the SOURCE was the same in all, the RANGE that I had selected in the source was different. I reset all the ranges in the pivot tables to be the same and all tables now showed up in the slicer for selection.
I had the same issue, and fixed it using the following idea.
Reassign the Pivot Tables' data sources (first define one Pivot Table source, and then copy the PivotCaches to the others):
Sheets("nameofthesheet").Select
ActiveSheet.PivotTables("PivotTable1").ChangePivotCache _
ActiveWorkbook.PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
"name_of_the_table")
ActiveSheet.PivotTables("PivotTable2").CacheIndex = ActiveSheet.PivotTables("PivotTable1").CacheIndex
ActiveSheet.PivotTables("PivotTable3").CacheIndex = ActiveSheet.PivotTables("PivotTable1").CacheIndex
ActiveSheet.PivotTables("PivotTable4").CacheIndex = ActiveSheet.PivotTables("PivotTable1").CacheIndex
Rebuild the Slicers (recording a Macro will be useful!)
Make sure all your pivot table have the same data range, if not change the data range, when all pivot table have the same data range, then it will appear at the connection for the slicer

Excel 2016 Pivot Table - Change Data Source Not Updating Correctly

I have been using Excel 2007 for the longest time and was just upgraded to Excel 2016. When trying to update files with Pivot tables that I have used before, I have noticed problems with updating/changing the source data for these pivot tables.
As a simple example, I create a new worksheet in a new workbook and name the sheet "January". I can enter January sale data, and create a Pivot Table based on the data, by selecting the data range. If I copy that January sheet and create a new sheet and name it February, I want to be able to change the data source to the data on the new sheet. When I go in to change the data source and edit it from January to February, it lets me type it in but when I close, it does not pull in the February data. If I go back in, it still says January.
I know in excel 2007, I was able to do it this way and it would work.

Changing the data source of pivot table in VBA

My problem goes like this:
I have 2 worksheets in 1 workbook which are the "Source Data" and the "Pivot Sheet". Everytime I generate(I generate data every week and it's in macros), data are added to Source Data sheet but the Pivot Table in the Pivot Sheet remains the same. I think it's quite handy if I will still have to Change Data Source everytime I'll generate the report. I want it to automatically adjust it's data source until the last used cell. How to do it? Columns used as Source are from Column C to W Please help! :(
If you create tables (ctrl + t) for your source data and direct your pivot to read those tables, they should automatically expand as new data is entered. Then it should be as simple as Thisworkbook.Worksheets("Pivot").PivotTables("PivotTable1").PivotCache.Refresh (based on the macro recorder)

Add column to pivottable VBA excel

I need to add a column to a pivottable in, whose content does not change, using VBA in Excel 2013.
How can I add a column, that is not a calculated field?

Resources