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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Busno
Helper I
Helper I

multi-condition calculate

Hi,

Base on my data I have Sales, Market share and need to calculate for Target. There are 2 conditions of Target.

 

1. If Market share=< 15%, Target = Sales + 10%

2. If Market share> 15%, Target = Sales + 15%

 

How can I create DAX for Target?

 

Thank you

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Busno , Try like

 

Switch( true(),
[Market share] <.15, [Sales]*1.1,
[Sales]*1.15
)

View solution in original post

3 REPLIES 3
Busno
Helper I
Helper I

I got the solution 

 

thank you all

TomMartens
Super User
Super User

Hey @Busno ,

 

please describe how you define Market Share.

 

I'm also wondering how periodically data refreshes have to be considered, as growing data might impact the Sales and therefor Marketshare.

 

Maybe you want to consider creating a pbix file that contains sample data, but still reflects your data model. Upload the pbix to onedrive or dropbox and share the link. If you are using Excel to create the sample data share the xlsx as well.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany
amitchandak
Super User
Super User

@Busno , Try like

 

Switch( true(),
[Market share] <.15, [Sales]*1.1,
[Sales]*1.15
)

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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