cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Louis63
New Member

Multiple conditional statement in Switch function

Hello, 

I have created the following formula to segment a table of customers according to their number of orders. I would like to add a condition to this formula which would be: "To be a Gold customer, the person must have ordered more than 15 times and spent $10,000", "To be a Silver customer, the person must have ordered more than 5 times and spent $7,000" for example. Is it possible to have 2 conditions in the SWITCH formula?

 

Louis63_0-1670256398742.png

 

Thanks for your help!

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Louis63 , add additional condition

 

example

Switch(True() ,

[No] > 15 && [Spend] > 10000, "Gold" ,

// add others

)

 

Switch-Case statement of #PowerBI: https://www.youtube.com/watch?v=gelJWktlR80&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=56



!! Microsoft Fabric !!
Microsoft Power BI Learning Resources, 2023 !!
Learn Power BI - Full Course with Dec-2022, with Window, Index, Offset, 100+ Topics !!
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !! Proud to be a Super User! !!

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Louis63 , add additional condition

 

example

Switch(True() ,

[No] > 15 && [Spend] > 10000, "Gold" ,

// add others

)

 

Switch-Case statement of #PowerBI: https://www.youtube.com/watch?v=gelJWktlR80&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=56



!! Microsoft Fabric !!
Microsoft Power BI Learning Resources, 2023 !!
Learn Power BI - Full Course with Dec-2022, with Window, Index, Offset, 100+ Topics !!
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !! Proud to be a Super User! !!

Helpful resources

Announcements
May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Submit your Data Story

Data Stories Gallery

Share your Data Story with the Community in the Data Stories Gallery.

Top Solution Authors