Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
vengadeshpalani
Creator
Creator

customize Pivot table

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

1.png

what we need

2.png

please give some idea...

16 Replies
sunny_talwar

Check attached

Capture.PNG

vengadeshpalani
Creator
Creator
Author

thanks, Sunny

i have face the following issue 

3.png

sunny_talwar

Uncheck 'Suppress Zero Value' on the presentation tab and see if that helps

vengadeshpalani
Creator
Creator
Author

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)

sunny_talwar

Uncheck 'Suppress Zero Value' on the presentation tab and see if that helps

vengadeshpalani
Creator
Creator
Author

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.

5.png

4.png

vengadeshpalani
Creator
Creator
Author

Sunny

Even i clear all selection but i facing the same issue (Suppress Zero Value Unchecked)

6.png

sunny_talwar

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())

vengadeshpalani
Creator
Creator
Author

Error In Calculated Dimension