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 All
I will appreciate your help as I'm trying to figure out my roadblock in power bi, here is the scenario
I'm trying to create a measure base on the value on the field, the table have already 3 measures but I want to create a 4th but the formula is different based on the column value.
I'm trying to invoke the if but it didn't detect the field name since its a calculated measure.
| Product | Measure 1 | Measure 2 | Measure 3 | Measure 4 |
| A | 100 | 150 | 300 | if Product = A then Measure 1 + Measure 3 else measure 1 + Measure 2 + Measure 3 |
| B | 100 | 150 | 300 | if Product = A then Measure 1 + Measure 3 else measure 1 + Measure 2 + Measure 4 |
| C | 100 | 150 | 300 | if Product = A then Measure 1 + Measure 3 else measure 1 + Measure 2 + Measure 5 |
Thank you
Solved! Go to Solution.
@DemiHaung
IF(Selectedvalue(Tablename[Product])= "A", your result , your other result
you can't pick the column name directly in a measure so this is the approach! Share your Kudos
Proud to be a Super User!
Hi DemiHaung, Try this
Measure 4 =
VAR SelectedProduct = SELECTEDVALUE(Table[Product])
RETURN
IF(
SelectedProduct = "A", [Measure1]+[Measure2]+[Measure3],
BLANK()
)
If found helpful mark as a solution or give Kudos for efforts. Thanks!
Hi DemiHaung, Try this
Measure 4 =
VAR SelectedProduct = SELECTEDVALUE(Table[Product])
RETURN
IF(
SelectedProduct = "A", [Measure1]+[Measure2]+[Measure3],
BLANK()
)
If found helpful mark as a solution or give Kudos for efforts. Thanks!
thank you it works, I never thought I can use the selectedvalue this way.
@DemiHaung
IF(Selectedvalue(Tablename[Product])= "A", your result , your other result
you can't pick the column name directly in a measure so this is the approach! Share your Kudos
Proud to be a Super User!
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 |
|---|---|
| 30 | |
| 28 | |
| 23 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 49 | |
| 47 | |
| 41 | |
| 21 | |
| 19 |