Forum Discussion
Table conditional format one column based on another column
- 4 years ago
Hi Anonymous ,
According to your description, hereās my solution.
1.Create a measure.
Color = IF ( MAX ( 'Table'[Q1] ) > MAX ( 'Table'[Targets] ), "Green", "Red" )2.Turn on the Font color option in Conditional formatting.
3.Select the measure as the based on field.
4.Get the expected result.
Best Regards,
Community Support Team _ kalyjIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
According to your description, hereās my solution.
1.Create a measure.
Color = IF ( MAX ( 'Table'[Q1] ) > MAX ( 'Table'[Targets] ), "Green", "Red" )
2.Turn on the Font color option in Conditional formatting.
3.Select the measure as the based on field.
4.Get the expected result.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Perfect! Many thanks for that - much appreciated.