This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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!
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 27 | |
| 25 | |
| 25 | |
| 21 | |
| 14 |
| User | Count |
|---|---|
| 50 | |
| 46 | |
| 23 | |
| 18 | |
| 18 |