Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
May be
=If(Count(TOTAL <Products> Colours) > 1,Yellow())
in Conditional Color.
Regards,
Antonio
May be
=If(Count(TOTAL <Products> Colours) > 1,Yellow())
in Conditional Color.
Regards,
Antonio
Hi,
try like this.
=if(Aggr(count ({<Colours=>}Products),Products)>1,Yellow(),White())
Sorry I was not clear, my desired outcome is below.
A little modification to Antonio's expression should work for you
=Aggr(If(Count(DISTINCT TOTAL <Products> Colours) > 1,Yellow()), Products, Colours)
Or this
Aggr(If(Count(DISTINCT Colours) > 1, Yellow()), Products)
A little modification to antoniotiman's expression should work for you
=Aggr(If(Count(DISTINCT TOTAL <Products> Colours) > 1,Yellow()), Products, Colours)
Thank you, it works
Thanks