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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.