Forum Discussion
Syndicate_Admin
Administrator
3 years agoConditional formatting with measure as rule
Hello. I have a table with a calculated numeric column, and I want to conditionally format it based on a measure. That is, for each case, if the value of the column is greater than that of the measu...
Ritaf1983
Super User
3 years agoYou can create a "flag" measure that will check your condition and return 1 /0.
For example :
Flag condition = if(SELECTEDVALUE('Table'[column])>[measure test],1,0)
and then based on this measure modify conditional formatting:
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly