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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi Power BI Professionals:
I'm trying to compare my measure with my columns to get another calculated column:
FrPY is a measure and Goal is a column. What I need is for Status (calculated column) to compare FrPY and Goal where If(frPY<goal) then return a 1.
not all rows have a goal so I have filtered those away in the report level filter (if it affects the calculation)
The reason I want to do this is because conditional formatting cannot be set based off other columns. (I want to do a traffic light color if frpy<goal =red, frpy=goal = green
Solved! Go to Solution.
@CTW,
You may add a measure as follows.
Measure = IF ( [FrPY] < MAX ( Table1[Goal] ), 1, 0 )
@CTW,
You may add a measure as follows.
Measure = IF ( [FrPY] < MAX ( Table1[Goal] ), 1, 0 )
Thanks that worked!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 62 | |
| 54 | |
| 40 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 94 | |
| 83 | |
| 33 | |
| 32 | |
| 24 |