Forum Discussion
Kodonnellm
1 year agoFrequent Visitor
Need help with conditional formatting based on another column to highlight in red
Hi, I need help with a conditional formatting measure, so that under each quarter in the individual rows, if the Act FTE value is greater than Fcst FTE value, highlight in red. Thank...
Anonymous
1 year agoNot applicable
Hi Kodonnellm
You can create a measure.
Color_format =
IF ( SUM ( [Act FTE] ) > SUM ( [Fcse FTE] ), "red" )
Then click the conditional formatting of 'act fte' field.
Select background color, and put the measure to it.
And you can refer to the following link to know more about conditional formatting by using measure.
Conditional Formatting Using Custom Measure - Microsoft Fabric Community
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.