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

Join 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.

Reply
Drouden
New Member

Calculating with different multipliers based on value

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-ValueMultiplier for values
100.015
1000.025
1.0000.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

1 ACCEPTED SOLUTION
maruthisp
Solution Sage
Solution Sage

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 

LinkedIn - http://www.linkedin.com/in/maruthi-siva-prasad/ 

X            -  Maruthi Siva Prasad - (@MaruthiSP) / X

View solution in original post

3 REPLIES 3
maruthisp
Solution Sage
Solution Sage

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 

LinkedIn - http://www.linkedin.com/in/maruthi-siva-prasad/ 

X            -  Maruthi Siva Prasad - (@MaruthiSP) / X

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

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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