Forum Discussion
admin11
Memorable Member
4 years agoHow to get Previous Qtr sales ?
Hi All I have below expression , display current qtr sales ( OCT sales) working fine :- QTD SALES = CALCULATE(SUM(SALES[sales]),DATESQTD(('Date'[Date]))) I also have below expression , dis...
- 4 years ago
admin11 , -2 Qtr
2nd QTD Sales Last = CALCULATE(SUM(Sales[sales]),DATESQTD(dateadd('Date'[Date],-2,QUARTER)))
or
2nd Last QUARTER Sales = CALCULATE(SUM(Sales[Sales Amount]),PREVIOUSQUARTER(dateadd('Date'[Date],-1,QUARTER)))
- 4 years ago
Please accept this solution and also click the thumbs up icon as a thank you. Cheers
QTD Sales Previous = CALCULATE(SUM(Sales[sales]),DATESQTD(dateadd('Date'[Date],-2,QUARTER)))
speedramps
Super User
4 years agoPlease accept this solution and also click the thumbs up icon as a thank you. Cheers
QTD Sales Previous = CALCULATE(SUM(Sales[sales]),DATESQTD(dateadd('Date'[Date],-2,QUARTER)))