Forum Discussion
CLANG10
3 years agoHelper I
Color highest value in a table column
Hi,
I wanted to insert background colour for highest value (i.e. 386) in a table column. Wrote a measure "COLOR MAXCT" and apply in field value formatting, but the results colour all rows in the column instead. Seek advise on how Measure should be written to correct this. Thanks!
CLANG10 ,
try this measure,
COLOR MAXCT = VAR _max = MAXX(ALLSELECTED('Tablename'),'Tablename'[VALUE]) RETURN IF(_max = MAXA('Tablename'[VALUE]),"#E6007E")Thanks,
Arul