format highest value in a column

This is what I thought would work, but it highlights every value in the column.
Trying to highlight highest value in column using format rule below:

MAX(list([Average])) = [_THISROW].[Average]

Solved Solved
0 5 195
1 ACCEPTED SOLUTION

Try with MAX(YourTableName[Average])=[Average]

View solution in original post

5 REPLIES 5

Try with MAX(YourTableName[Average])=[Average]

Thank you, this worked.   Have a question...
When doing a comparison, what is the significance of A vs B?

A)  Max(YourTableName[Average]) = [Average]
B)  Max([Average]) = [Average]

Unclear why adding the table name to the evaluation makes a difference in how the evaluation is performed.

Max([Average]) reads the "max value" from that row's column.. which is just one value. The MAX(Table[Column]) reads all rows from a table and picks the maximum value from that specified one column.

Thanks for clarifying...  always considered the difference as shorthand vs longhand...  There's more to it apparently.  ๐Ÿ™‚

You're welcome!

Top Labels in this Space