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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Kpham
Resolver I
Resolver I

Running total future months only

Hi,

I would like to create a running total but only for the current month and ongoing(future months). 
Can anybody advise me how I can achieve this?

Amount To Be Delivered Running Total = 
                CALCULATE(
                    SUM(Milestones[Amount Delivered (€)]),
                    FILTER(ALLSELECTED(DateDim),
                    DateDim[Date Month]<=MAX(DateDim[Date Month]
                    )))

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @Kpham ,

 

If "current month" means the actual current month,you should use below dax expression:

 

Amount To Be Delivered Running Total = 
                CALCULATE(
                    SUM(Milestones[Amount Delivered (€)]),
                    FILTER(ALLSELECTED(DateDim),
                    DateDim[Date Month]>=Month(Today())
                    )))

 

but if "current month" depends on the filter selection,the expression should be:

 

Amount To Be Delivered Running Total = 
                CALCULATE(
                    SUM(Milestones[Amount Delivered (€)]),
                    FILTER(ALLSELECTED(DateDim),
                    DateDim[Date Month]>=MAX(DateDim[Date Month]
                    )))

 

 

Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
 

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Kpham , try like


Amount To Be Delivered Running Total =
if(eomonth(max(DateDim[Date Month]),0) = eomonth(today(),0), CALCULATE(
SUM(Milestones[Amount Delivered (€)]),
FILTER(ALLSELECTED(DateDim),
DateDim[Date Month]<=MAX(DateDim[Date Month]
))) , blank())

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here
Anonymous
Not applicable

Hi  @Kpham ,

 

If "current month" means the actual current month,you should use below dax expression:

 

Amount To Be Delivered Running Total = 
                CALCULATE(
                    SUM(Milestones[Amount Delivered (€)]),
                    FILTER(ALLSELECTED(DateDim),
                    DateDim[Date Month]>=Month(Today())
                    )))

 

but if "current month" depends on the filter selection,the expression should be:

 

Amount To Be Delivered Running Total = 
                CALCULATE(
                    SUM(Milestones[Amount Delivered (€)]),
                    FILTER(ALLSELECTED(DateDim),
                    DateDim[Date Month]>=MAX(DateDim[Date Month]
                    )))

 

 

Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
 
lbendlin
Super User
Super User

That should be >= , not  <=

 

Also note that "current month"  depends on your filter context, and can have a different meaning from what you expect.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.