Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
Can any one please help me to highlight the background color in the measures other than 0 values only .
In the below table I have used the
Measure:
But by the above expression the colors applied to all the values including 0 values also but I need to exclude the color for 0 values.
Please help me on this.
Thanks in advance
May be use this as your color expression
If(Column(1) <> 0, Pick(Match(Header2, 'Sun Network A','Island Space','SHGN','SUNLOPS'), RGB(255,153,51), RGB(102,204,0), RGB(224,224,224), RGB(255,255,153) ) )
In background color expression use "if" condition.
if([Sun Network A]=0,white(),)
etc.
Could you please help me on above issue to apply the background color to the values which are not equal to zero.
If you are using pivot table chart go to Data and in all columns just put that "if" in background color expression
May be use this as your color expression
If(Column(1) <> 0, Pick(Match(Header2, 'Sun Network A','Island Space','SHGN','SUNLOPS'), RGB(255,153,51), RGB(102,204,0), RGB(224,224,224), RGB(255,255,153) ) )