Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I am trying to get the 12 month Rolling Total Amount to show in a table where I dont have the date in the row context
I have State or city dimention as row context
I just need the rolling totals for the last month i.e. Nov 2021 to Oct 2022
I need the sum of the total amounts for the last 12 months as one of the columns in the table below (column 6)
irrespective of whatever date filters / slicers are picked
can someone please help with this
Solved! Go to Solution.
Hi @Saurabh129 - I believe that you mean that you want the previous 12 months of sales based on Today date. Do you have a calendar table? If so the following should work:
Rolling Last 12 Month Sales Amount =
VAR _EndDate = EOMONTH( TODAY(), -1)
RETURN
CALCULATE (
[Sales Amount],
DATESINPERIOD (
'Date'[Date],
_EndDate,
-1,
YEAR
)
)
Hi @Saurabh129 - I believe that you mean that you want the previous 12 months of sales based on Today date. Do you have a calendar table? If so the following should work:
Rolling Last 12 Month Sales Amount =
VAR _EndDate = EOMONTH( TODAY(), -1)
RETURN
CALCULATE (
[Sales Amount],
DATESINPERIOD (
'Date'[Date],
_EndDate,
-1,
YEAR
)
)
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
21 | |
20 | |
19 | |
13 | |
12 |
User | Count |
---|---|
41 | |
27 | |
23 | |
22 | |
22 |