Dynamic GetPivotData Formula to Change Date Referenced

EnergyExcel

New Member
Joined
Nov 1, 2022
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hello,

I am utilizing a GetPivotData formula and need to make the date refenced dynamic to change it month over month for analysis. Currently the date from the GetPivotData is 2022-09-30T00:00:00 but I want to reference a specific cell outside of the pivot (lets say A5) that will contain the date I want. Below is the formula I currently have directly from GetPivotData:

=GETPIVOTDATA("[Measures].[Sum of NET VALUE - VOLUME]",'Rev & Vol by Operator'!$A$1,"[REVENUE DETAIL].[PRODUCT CODE]","[REVENUE DETAIL].[PRODUCT CODE].&[GAS]","[REVENUE DETAIL].[Operator Name]","[REVENUE DETAIL].[Operator Name].&["&$A9&"]","[REVENUE DETAIL].[EOM CASH DATE]","[REVENUE DETAIL].[EOM CASH DATE].&[2022-09-30T00:00:00]")

I tried replacing [2022-09-30T00:00:00] with ["&$A5&"] but I am getting a REF error. I was able to successfully replace the Operator with a cell reference (A9) so not sure if it is a formatting thing or not.

Thanks for any help!
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
SOLVED:
I was able to solve this by using my reference date and converting the date to the GetPivotData date format:

["&CONCATENATE(TEXT(A5,"YYYY"),"-",TEXT(A5,"MM"),"-",TEXT(A5,"DD"),"T00:00:00")&"]
 
Upvote 0
FWIW, you can do it all with one TEXT function:

["&TEXT(A5,"YYYY-MM-DD""T00:00:00""")&"]
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,678
Members
449,116
Latest member
HypnoFant

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top