Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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.
User | Count |
---|---|
119 | |
78 | |
58 | |
52 | |
46 |
User | Count |
---|---|
170 | |
117 | |
63 | |
58 | |
51 |