Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
I'm currently struggeling with a problem, which I cannot solve within Power BI. Based on definied quantities, we multiply within our controlling other values for some bonuses.
This means:
Euro-Value | Multiplier for values |
10 | 0.015 |
100 | 0.025 |
1.000 | 0.035 |
The complexity comes with the following rule. If we hit with our quantities 10.000, the following conditions needs to be applied:
If we hit 10.000€ for example, we need to calculate everything till 1.000 witht the multiplier 0.035, everything above needs to be calculated with 0.039 (1000*0.035+9000*0.039)=Final value
The first half of the problem I solve with this measure:
Outcomes_Multiplier =
VAR Multiplier = SWITCH(
TRUE,
[Euro-Values] < 10, 0.015,
[Euro-Values] >= 10 && [Invoiced Net Sales Including PM] < 100, 0.025,
[Euro-Values] >= 100 && [Invoiced Net Sales Including PM] < 1000, 0.035,
0
)
Var BonusEstimator = [Euro-Values] *(Multiplier)
RETURN
BonusEstimator
But I really can't find a solution for the last condition, where we combine two conditions.
Any help is greatly appreciated,
Drou
Solved! Go to Solution.
Hi Drouden,
As per your original post description I tried to implement a solution with DAX expression. Please check the below pbix file.
Calculating with different multipliers based on value.pbix
If this reply helped solve your problem, please consider clicking "Accept as Solution" so others can benefit too. And if you found it useful, a quick "Kudos" is always appreciated, thanks!
Best Regards,
Maruthi
Hi Drouden,
As per your original post description I tried to implement a solution with DAX expression. Please check the below pbix file.
Calculating with different multipliers based on value.pbix
If this reply helped solve your problem, please consider clicking "Accept as Solution" so others can benefit too. And if you found it useful, a quick "Kudos" is always appreciated, thanks!
Best Regards,
Maruthi
Thanks Maruthi, it worked out perfectly for me. The new context for the variable works like a charm. Have a great day,
Drou
Glad to hear, Drouden 🙂
Have a great day ahead!
Best regards,
Maruthi
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
21 | |
11 | |
10 | |
9 | |
8 |