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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
I need help with the Switch True Measure.
If supplier is 123456 then return "preferred" else "non preferred".
Table 1
| Supplier |
| 123456 |
| 12322 |
| 13123 |
| 2313123 |
| 123122 |
| 2312 |
| 13123123 |
Solved! Go to Solution.
Assuming the supplier column is type text,
As a calculated column:
status = IF(Table[Supplier]= "123456", "Preferred", "Non Preferred")
As a measure:
status = IF(MAX(Table[Supplier]) = "123456", "Preferred", "Non Preferred")
Proud to be a Super User!
Paul on Linkedin.
Assuming the supplier column is type text,
As a calculated column:
status = IF(Table[Supplier]= "123456", "Preferred", "Non Preferred")
As a measure:
status = IF(MAX(Table[Supplier]) = "123456", "Preferred", "Non Preferred")
Proud to be a Super User!
Paul on Linkedin.
| User | Count |
|---|---|
| 50 | |
| 40 | |
| 31 | |
| 24 | |
| 22 |
| User | Count |
|---|---|
| 134 | |
| 112 | |
| 57 | |
| 44 | |
| 38 |