Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
i have pivot table like below but i need to show extra one row with blue color based on Dim-3 how can i achieve this requirement?
Actual
what we need
please give some idea...
Check attached
thanks, Sunny
i have face the following issue
Uncheck 'Suppress Zero Value' on the presentation tab and see if that helps
i made changes in following things
Dim3
=Pick(ExtraDim, if([FINANCIAL PLAN]<>'ZZZZZ',[FINANCIAL PLAN]), ' ')
Dim3 color
=If(ExtraDim = 2, LightBlue())
expression
Pick(ExtraDim, (if ([FINANCIAL PLAN] <>'ZZZZZ', SUM(AMOUNT),0)), 0)
expression color
=If(ExtraDim = 2, LightBlue())
sort
Only({1} ExtraDim)
Uncheck 'Suppress Zero Value' on the presentation tab and see if that helps
Sunny,
i have Unchecked Suppress Zero Value, it does not work.
FYI --> by default following selection will happen, when i clear all it's working fine.
Sunny
Even i clear all selection but i facing the same issue (Suppress Zero Value Unchecked)
May be try this
Dim3
=Pick(Only({1} ExtraDim), if([FINANCIAL PLAN]<>'ZZZZZ',[FINANCIAL PLAN]), ' ')
Dim3 color
=If(Only({1} ExtraDim) = 2, LightBlue())
expression
Pick(Only({1} ExtraDim), (if ([FINANCIAL PLAN] <>'ZZZZZ', SUM(AMOUNT),0)), 0)
expression color
=If(Only({1} ExtraDim) = 2, LightBlue())
Error In Calculated Dimension