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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I need help in creating a measure based on the below condition:-
1st condition….Instructor=Delivery but not equal to Order, then “Yes”
2nd Condition… Instructor ,Delivery, Order all are different then “Yes” Please suggest.
If Delivery, Instructor and Order are all columns and not values you can try the following formula.
Create a column not a measure.
Column =
SWITCH (
TRUE (),
'Table'[Instructor] = 'Table'[Delivery] && 'Table'[Instructor] <> 'Table'[Order], "Yes",
'Table'[Instructor] <> 'Table'[Delivery] && 'Table'[Instructor] <> 'Table'[Order]) && 'Table'[Delivery] = 'Table'[Order] &, "Yes",
BLANK()
)
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
30 | |
19 | |
12 | |
7 | |
5 |