I have a table that fills in automatically from a pivot. The pivot is created from an Access database. It has lookups to the pivot that are dynamic instead of absolute so that the table changes based on what is selected.
From this: =GETPIVOTDATA("Number",$A$23,"Area","A","Priority","1")
to this: =GETPIVOTDATA("Number",$A$23,"Area",$K3,"Priority",L$1)
My pivot now uses an SQL Analysis Cube so the GETPIVOTDATA looks like this
=GETPIVOTDATA("[Measures].[Count]",Pivots!$B$39,"[Dataset].[Area]","[Dataset].[Area].&[A]","[Dataset].[Priority]","[Dataset].[Priority].&[1]")
I've tried all sorts of ways to substitute the cell reference for the absolute value, but all I get is a #Ref error. Does anyone know the correct format for this or if it can be done?
From this: =GETPIVOTDATA("Number",$A$23,"Area","A","Priority","1")
to this: =GETPIVOTDATA("Number",$A$23,"Area",$K3,"Priority",L$1)
My pivot now uses an SQL Analysis Cube so the GETPIVOTDATA looks like this
=GETPIVOTDATA("[Measures].[Count]",Pivots!$B$39,"[Dataset].[Area]","[Dataset].[Area].&[A]","[Dataset].[Priority]","[Dataset].[Priority].&[1]")
I've tried all sorts of ways to substitute the cell reference for the absolute value, but all I get is a #Ref error. Does anyone know the correct format for this or if it can be done?