Forum Discussion
MAT Based Previous Quarters
MacedoLuis , Create a new Rank column in dim calendar (calling it date in my formula)
Qtr Rank = RANKX(all('Date'),'Date'[quarter_list],,ASC,Dense)
Then you can have measure like
This Qtr = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Qtr Rank]=max('Date'[Qtr Rank])))
Last Qtr = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Qtr Rank]=max('Date'[Qtr Rank])-1))
Time Intelligence, Part of learn Power BI https://youtu.be/cN8AO3_vmlY?t=27510
Time Intelligence, DATESMTD, DATESQTD, DATESYTD, Week On Week, Week Till Date, Custom Period on Period,
Custom Period till date: https://youtu.be/aU2aKbnHuWs&t=145s
Power BI Custom Period Till Date (PTD)- https://youtu.be/rQ3Z_LtxwQM
amitchandak I tried it, and got blanks. And also tried like this, but i got blanks. Would you have another to calculate it?