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
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())

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
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.