Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
gauravnarchal
Post Prodigy
Post Prodigy

Switch True

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
1 ACCEPTED SOLUTION
PaulDBrown
Community Champion
Community Champion

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")

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






View solution in original post

1 REPLY 1
PaulDBrown
Community Champion
Community Champion

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")

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.