Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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 -
How do I do that?
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!!
User | Count |
---|---|
21 | |
20 | |
14 | |
10 | |
8 |
User | Count |
---|---|
30 | |
28 | |
14 | |
13 | |
11 |