Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. 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
)
)
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 21 | |
| 12 | |
| 9 | |
| 5 | |
| 5 |