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

stop date sum running 12 month

I have this measure, that i want to stop at last closed month. Measure is the line value

 

lbn 12 =
CALCULATE (
SUMX('running 12',[Salesrunning.PNG] ),
DATESINPERIOD (
'running 12'[SalesDate].[Date] ,
LASTDATE ( 'running 12'[SalesDate].[Date] ),
-12,
MONTH
)
    )
1 ACCEPTED SOLUTION

@Anonymous , Try if this formula can help

 

bn 12 =
var _max = maxx(allselected('running 12'),'running 12'[SalesDate].[Date])
return
CALCULATE (
SUMX('running 12',[Salesrunning.PNG] ),
DATESINPERIOD (
'running 12'[SalesDate].[Date] ,
LASTDATE ( 'running 12'[SalesDate].[Date] ),
-12,
MONTH
) , 'running 12'[SalesDate].[Date] <= _max
)

 

or refer to this video, as I doubt above will give rolling 12 month :   https://www.youtube.com/watch?v=duMSovyosXE

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

lbn 12 =
CALCULATE (
SUMX('running 12',[Sales] ),
DATESINPERIOD ('running 12'[SalesDate].[Date] ,
LASTDATE ( 'running 12'[SalesDate].[Date] ),
-12,
MONTH
)
    )
Anonymous
Not applicable

Sorry for missplacing pic. 😉

@Anonymous , Try if this formula can help

 

bn 12 =
var _max = maxx(allselected('running 12'),'running 12'[SalesDate].[Date])
return
CALCULATE (
SUMX('running 12',[Salesrunning.PNG] ),
DATESINPERIOD (
'running 12'[SalesDate].[Date] ,
LASTDATE ( 'running 12'[SalesDate].[Date] ),
-12,
MONTH
) , 'running 12'[SalesDate].[Date] <= _max
)

 

or refer to this video, as I doubt above will give rolling 12 month :   https://www.youtube.com/watch?v=duMSovyosXE

Anonymous
Not applicable

Sorry 🙂 was a bit to fast in conclusion 

It worked with a little twist from your video

Anonymous
Not applicable

Didn't work🤔

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.