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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
pmadam
Helper II
Helper II

DAX Help

Hi Team,

 

If someone can can help me with below issue.

 

I am trying to Calculate Previos Quarter , Previous Month. Issue is for Previous Quater, Prev Month it should give me 2022 Q4 values but with below dax, its not understanding to go to previous year

 

Below DAX works from Feb to Dec and doesnt work for Jan , as it doesnt understand to go to 2022 Dec month

 

Prev_Month = MONTH(TODAY())-1
PMonth Book = CALCULATE(SUM('YTD Total'[Book RR]), FILTER('YTD Total','YTD Total'[Month Number]= [Prev_Month]))
 
Now, Im not sure how to even start writing DAX for Previous Quarter.
 
Please help.
 
Thanks,
PV
2 REPLIES 2
FreemanZ
Super User
Super User

hi @pmadam

try to join your table with a qualified date table and utilize Time Intelligence Functions like DATEADD
for previous month,
CALCULATE(
...,
DATEADD(DateTable[Date], -1, MONTH)
)
for previous quarter, DATEADD(DateTable[Date], -3, MONTH)

But this works only when there is some  Year or Quarter selection in slicers. But i want without any selections of slicers from date. 

 

I get "dateadd expects a contiguous selection" error msg if i do not make any date selections or add Year ot Quarter to the table. And i have one - many directional tables.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.