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
Hello,
is there a way to compute running total without the calculate function? For example via creating a table variable inside a measure and sum it up via sumx?
With this sample data:
Date | Sales | |
01.01.2021 | 123 | |
02.01.2021 | 423 | |
03.01.2021 | 535 | |
04.01.2021 | 66 | |
05.01.2021 | 22 | |
06.01.2021 | 11 | |
07.01.2021 | 11 | |
08.01.2021 | 33 | |
09.01.2021 | 44 |
Thank you very much in advance.
Best.
Solved! Go to Solution.
@Applicable88 Yes:
Measure =
VAR __Date = MAX('Table'[Date])
RETURN
SUMX(FILTER(ALL('Table',[Date] <= __Date),[Sales])
@Applicable88 Yes:
Measure =
VAR __Date = MAX('Table'[Date])
RETURN
SUMX(FILTER(ALL('Table',[Date] <= __Date),[Sales])
Just me, or is there a missing paren in this?
No doubt, it's your most favooooooooorite way to kick off CALCULATE. 🤣
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |