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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Dimitris_Kats
Helper V
Helper V

Calculations based on month

Hello dear members,

 

In my model I have created an independed table with percentages from 1%-100% and I have  this formula :

IF(DISTINCTCOUNT(Percentage[Value])>1, CALCULATE(SUM(Table1[Salary]) ), IFERROR( CALCULATE(SUM(Table1[Salary])*(1+MAX(Percentage[Value])),BLANK()))

 

I calculate the salary based on the percentage selection from the slicer.

 

So I have a report like this:

 

                        January     February       March      April     May    June   July     August   September   October   November   December

IT DIVISION      10000         10000         10000     10000  10000  10000 10000   10000    10000           10000       10000         10000  

 

If the user chooses, for example 5% all these amounts will be increase by 5%
I want this calculationto be applied only to specific months ( April - December) . January to March i want to show only this SUM(Table1[Salary])

 

How can i do this?

Thank you in advance

1 ACCEPTED SOLUTION
Kishore_Kadhir
Resolver II
Resolver II

Hi @Dimitris_Kats 

 

You can create a measure with Switch statement:

SWITCH(
TRUE(),
MAX('Table'[Month]) IN {"Jan", "Feb", "Mar"}, SUM(SALARY),
MAX('Table'[Month]) IN {"Apr", ----- , "Dec"}, SUM(SALARY) + ([Selected Percentage] * SUM(Salary))
)
Hope this helps.
Regards,
Kishore

View solution in original post

2 REPLIES 2
Kishore_Kadhir
Resolver II
Resolver II

Hi @Dimitris_Kats 

 

You can create a measure with Switch statement:

SWITCH(
TRUE(),
MAX('Table'[Month]) IN {"Jan", "Feb", "Mar"}, SUM(SALARY),
MAX('Table'[Month]) IN {"Apr", ----- , "Dec"}, SUM(SALARY) + ([Selected Percentage] * SUM(Salary))
)
Hope this helps.
Regards,
Kishore

Thank you so much @Kishore_Kadhir  that works perfectly! 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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