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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Rolling Total for Past 12 Months

I have a date table and Financial table.

 

If I select a particular monthyear from slicer of date table then my visual should display rolling total of previous 12 months sales sum from that selected monthyear.

 

Eg if I select july 2014, then my visual should display Rolling sum of sales from july 2013 to july 2014. i.e sales of February will be sum of Jan and feb, Sales of March should be sum of Jan,Feb and March and so on.

 

My code - 

rolling total =
var currentdate = MAX('Date'[Date])
var period = DATESINPERIOD('Date'[Date],currentdate,-12,MONTH)
return

CALCULATE(SUM(financials[ Sales]),FILTER(ALL('Date'[Date]),'Date'[Date]<=currentdate),period)
 
But I am getting wrong output:
Capture.PNG
 

 

How do I do that?

1 REPLY 1
VahidDM
Super User
Super User

Hi @Anonymous 

 

Try this measure:

rolling total 12 =
VAR _Date =
    MAX ( 'Date'[Date] )
VAR _LDate =
    DATE ( YEAR ( _Date ) - 1, MONTH ( _Date ), DAY ( _Date ) )
RETURN
    CALCULATE (
        SUM ( financials[Sales] ),
        FILTER ( ALL ( 'Date' ), 'Date'[Date] <= _Date && 'Date'[Date] > _LDate )
    )

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!!

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.