Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Gud Mrng Everyone,
Today I wanted to highlight my max value in the bar chart with a different colour.
For which I had created a bar chart.
Dimension: if(Match(System_Created,'CLA','GOL','LOI','QUO','SES','BUL')
Expression : Count(GID3)-Count(DISTINCT GID3)
To highlighted Max bar, in another colour
Expression--Background Colour =If(Sum(Count(GID3)-Count(DISTINCT GID3)) = Max(Total Aggr(Sum(Count(GID3)-Count(DISTINCT GID3)),if(Match(System_Created,'CLA','GOL','LOI','QUO','SES','BUL'), RGB(245, 121,111), RGB(122,122,122)))))
Not getting the desired result, Can anyone help me Please?
May be this?
If((Count(GID3)-Count(DISTINCT GID3))/Count(GID3) = Max(TOTAL Aggr((Count(GID3)-Count(DISTINCT GID3))/Count(GID3),Month1)), Green())
Thanks, Anil
You can even try using:
if(Rank(Count(GID3)-Count(DISTINCT GID3))=1,Green())
In Background color of your expression
Some cases this won't work, I've tried many times this? But good idea ![]()