Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello,
Is it possible to set my guage color to green if > target value and red if <. I'm using measures to get my values, so no table data. How would I achieve this if possible?
Solved! Go to Solution.
Hello @Russo
You’ll need a DAX measure that returns a color name or hex code based on the comparison:
IF([ActualValue] <= [TargetValue], "#00B050", "#FF0000")Set up the 'Fill Color' in Format Pane with this Measure as Field value.
Hello @Russo
You’ll need a DAX measure that returns a color name or hex code based on the comparison:
IF([ActualValue] <= [TargetValue], "#00B050", "#FF0000")Set up the 'Fill Color' in Format Pane with this Measure as Field value.
Thanks much, works great!