March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe 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
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]
)))
Solved! Go to Solution.
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]
)))
@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())
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]
)))
That should be >= , not <=
Also note that "current month" depends on your filter context, and can have a different meaning from what you expect.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
167 | |
117 | |
63 | |
57 | |
50 |