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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
WhaleWatcher222
Helper II
Helper II

Previous 4 Quarters in DAX as a measure

Hi Experts

 

How would you calculate as a mesure the previous four quarters in DAX - the previous quarter is easy

 

PREVQ Sales = Calculate( sum(sales[SalesAmt]), DATESQTD(ENDOFQUARTER([DATESADD[DATE[DATE],-1,QUARTER))))

 

 

 

 

1 ACCEPTED SOLUTION
rajendraongole1
Super User
Super User

Hi @WhaleWatcher222 - Create below measure to get the last four quarters

 

Prev4Q Sales =
CALCULATE(
SUM(Sales[SalesAmt]),
DATESINPERIOD(
'Date'[Date],
ENDOFQUARTER('Date'[Date]),
-4,
QUARTER
)
)

 

Hope it works

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

2 REPLIES 2
rajendraongole1
Super User
Super User

Hi @WhaleWatcher222 - Create below measure to get the last four quarters

 

Prev4Q Sales =
CALCULATE(
SUM(Sales[SalesAmt]),
DATESINPERIOD(
'Date'[Date],
ENDOFQUARTER('Date'[Date]),
-4,
QUARTER
)
)

 

Hope it works

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





let me test

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors