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 have a Monthly Sales from July to June and I want to calculate Cumulative total of Every year and it should refresh on July for every year, but the measure is not working like that:
ScreenShot: As you can see The 2009 July units sold is 57,447 but the cumulative total is 947,931 which is not refreshed.
Measure:
SALES RT =
VAR MAXDATE = MAX(DimCalender[Date])
VAR RESULT =
CALCULATE([Units Sold],
DimCalender[Date] <= MAXDATE,
All(DimCalender)
)
RETURN
RESULT
Any Help?
Solved! Go to Solution.
@MH3 ,
You can use that datesytd ?
YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"6/30"))
Last YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(dateadd('Date'[Date],-1,Year),"6/30"))
@MH3 ,
You can use that datesytd ?
YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"6/30"))
Last YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(dateadd('Date'[Date],-1,Year),"6/30"))
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 |
---|---|
164 | |
116 | |
63 | |
57 | |
50 |