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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Calculate Current Full Quarter SALES and Previous Full Quarter SALES in DAX

I am trying to calculate the equivalent of the below for Quarter data.  The below provides me the calculation for Month data.

I cannot reconfigure these measures to do the same for Quarter data.  I am wanting Current Full Qrt SALES and Previous Full QRT SALES.  I do have a column in Datetbl of:

QuarterStart = STARTOFQUARTER(DateTbl[Date])

Any help would be greatly appreciated.

tks/

 

Current Full month SALES =
CALCULATE ([GL Total],
FILTER (
ALL ('DateTbl'),
'DateTbl'[MonthStart]= DATE (YEAR ( TODAY ()), MONTH (TODAY () ) -1, 1 )))
 
Past Full month SALES =
CALCULATE ([GL Total],
FILTER (
ALL ('DateTbl'),
'DateTbl'[MonthStart]= DATE (YEAR ( TODAY ()), MONTH (TODAY () ) -2, 1 )))
1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

Follow such patterns to extract current and previous quarter,

=
VAR __qtr = CALCULATETABLE(DATESQTD(DateTbl[Date]), ENDOFQUARTER(DateTbl[Date]))
RETURN
...
=
VAR __prev_qtr = CALCULATETABLE(DATESQTD(DateTbl[Date]), STARTOFQUARTER(DateTbl[Date])-1)
RETURN
...

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

4 REPLIES 4
CNENFRNL
Community Champion
Community Champion

Follow such patterns to extract current and previous quarter,

=
VAR __qtr = CALCULATETABLE(DATESQTD(DateTbl[Date]), ENDOFQUARTER(DateTbl[Date]))
RETURN
...
=
VAR __prev_qtr = CALCULATETABLE(DATESQTD(DateTbl[Date]), STARTOFQUARTER(DateTbl[Date])-1)
RETURN
...

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Anonymous
Not applicable

Thanks so much!

Anonymous
Not applicable

Thanks, I have tried using that function and no luck.  Appreciate your post.

Jihwan_Kim
Super User
Super User

Hi,

I think, one of many ways to solve your problem is to use the below DAX function.

PARALLELPERIOD 

 

https://docs.microsoft.com/en-us/dax/parallelperiod-function-dax

 

 

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors