March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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
Solved! Go to Solution.
@Busno , Try like
Switch( true(),
[Market share] <.15, [Sales]*1.1,
[Sales]*1.15
)
I got the solution
thank you all
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
@Busno , Try like
Switch( true(),
[Market share] <.15, [Sales]*1.1,
[Sales]*1.15
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |