This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi,
I want my Measure to change value, based on a selected Unit.
Just like that:
So how do I write something like:
IF (car_id=0109) then Measure=22 (doesn't work this way)
Or:
IF (selected(0109) then Measure=22;
In DAX actually. Thanks for help, I appreciate!
Solved! Go to Solution.
In DAX, Measure is always sliced by current row context, it's not possible to use the current slicing row as condition in Measure. In your scenario, you can create a dummy measure for this conditon. Just create a measure like:
Dummy = SUM(Table[car_id])
Then you can create a calculated measure like:
Measure =IF([Dummy]=112,22,[Measure_Gauge])
Regards,
Hi Team
i need some assistance with converting this to a measure
if[AffiliateOwnerID]=3 and [ActivityTypeID]=1 or[ActivityTypeID]=2 then 2
else if [AffiliateOwnerID]=3 and [ActivityTypeID]=41 then 10
else if [AffiliateOwnerID]=3 and [ActivityTypeID]=6 or [ActivityTypeID]=42 then 5
else if [AffiliateOwnerID]=3 and [ActivityTypeID]=43 then 12
else 0
will really appreciate your assistance
In DAX, Measure is always sliced by current row context, it's not possible to use the current slicing row as condition in Measure. In your scenario, you can create a dummy measure for this conditon. Just create a measure like:
Dummy = SUM(Table[car_id])
Then you can create a calculated measure like:
Measure =IF([Dummy]=112,22,[Measure_Gauge])
Regards,
Check out the April 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 |
|---|---|
| 36 | |
| 33 | |
| 31 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 66 | |
| 55 | |
| 31 | |
| 24 | |
| 23 |