Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

different colors in total in pivot table

Hi all,

I've the pivot table attached, and i need to have different colors for the totals:

.Total buyer

.Total commodity specialist

.Total Cluster

Someone know how i can do it?

Thank you

1 Solution

Accepted Solutions
maxgro
MVP
MVP

maybe

pick(match(Dimensionality(), 2, 3, 4), red(), green(), Yellow())

in text or background color

1.png

View solution in original post

5 Replies
Anil_Babu_Samineni

Try this

Go to Dimension --> In that use + then select Text color and paste that code then try

If(dimensionality() = 4, Red(), Green())

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
maxgro
MVP
MVP

maybe

pick(match(Dimensionality(), 2, 3, 4), red(), green(), Yellow())

in text or background color

1.png

jpenuliar
Partner - Specialist III
Partner - Specialist III

May I add:

If(RowNo() = 0 or IsNull(Rowno()),

pick(match(Dimensionality(), 2, 3, 4), red(), green(), Yellow())

)

Regards,

Jonathan P

Anil_Babu_Samineni

Did you got the solutions? If yes, Please close this Thread or else let me know

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Not applicable
Author

Thank you all!!

Silvia