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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
rahulrackup
Employee
Employee

Calculating current and prior year quarter data with separate slicer for month and year

Hi Everyone,

I'm very new to Power BI, appreciate it if you could help me find the solution. My scenario is I need to calculate the total sum of a measure for the current and previous year quarter but the problem is there are two separate slicers one for MONTH and other for YEAR. So the requirement is when a user selects any month and year in the slicer the total sum would be the sum for the quarter to which the month falls to.

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I suggest using the PARALLELPERIOD function in DAX.

 

Check the below picture and the attached pbix file.

 

 

Picture1.png

 

QTY ALL in the same Q : =
CALCULATE ( SUM ( Data[QTY] ), PARALLELPERIOD ( 'Calendar'[Date], 0, QUARTER ) )

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

4 REPLIES 4
rahulrackup
Employee
Employee

Hi Jim,

 

Thanks for your response it's working fine for current year quarter but for previous year quarter it is not working. please see below snip.

rahulrackup_0-1634536499470.png

 

For example if i select year 2022 and month Jul, i should be able to see current and previous year quartern i.e. ( Jul, Aug and Sep) quarter value for 2022 and 2021.below formula is not working for QTD PY

 

QTD PY- CALCULATE ( SUM ( Data[QTY] ), PARALLELPERIOD ( 'Calendar'[Date], -1, QUARTER ) )

 

Jihwan_Kim
Super User
Super User

Hi,

I suggest using the PARALLELPERIOD function in DAX.

 

Check the below picture and the attached pbix file.

 

 

Picture1.png

 

QTY ALL in the same Q : =
CALCULATE ( SUM ( Data[QTY] ), PARALLELPERIOD ( 'Calendar'[Date], 0, QUARTER ) )

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Hi Jim,

 

Thanks for your response it's working fine for current year quarter but for previous year quarter it is not working. please see below snip.

rahulrackup_0-1634804547435.png

 

 

For example if i select year 2022 and month Jul, i should be able to see current and previous year quartern i.e. ( Jul, Aug and Sep) quarter value for 2022 and 2021.below formula is not working for QTD PY

 

QTD PY- CALCULATE ( SUM ( Data[QTY] ), PARALLELPERIOD ( 'Calendar'[Date], -1, QUARTER ) )

 

Hi,

I think your measure is showing the previous quarter, not the previous year.

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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