Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hey all ,
how can change a cell color in a pivot table based on Conditions
Example: If (a>b, Red, a<b, Yellow).
hope you can help
Thanks
Have a look at tab "Visual Cues"
right click on cell ->custom format cell -> background color->calculated->right Expression like
if(a>b,Red(),Yellow())
Regards,
May be this?
If(a>b, Red(), If(a<b, Yellow(), LightCyan())
Hi,
Use Expression-
if(a>b , red(),if(a<b, yellow(), black()))
Which background color you want to change -
1) only dimension?
Select Dimension expand + sign and your condition
2) only Expression?
Select Dimension expand + sign and your condition
OR using Visual ques option
3) You can right click on chart properties and go to custom format cell and based on your above condition add background.