Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Hi,
Can you help me make the running total like the example in the excel below but as a DAX calculation?
Thank you. 🙂
Solved! Go to Solution.
Running Total =
var currentEvent = SELECTEDVALUE('Table'[Event number])
return CALCULATE( SUM('Table'[Quantity]),
ALLEXCEPT('Table'[Case]),
'Table'[Event number] <= currentEvent
)
Running Total =
var currentEvent = SELECTEDVALUE('Table'[Event number])
return CALCULATE( SUM('Table'[Quantity]),
ALLEXCEPT('Table'[Case]),
'Table'[Event number] <= currentEvent
)
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
70 | |
67 | |
43 | |
41 |
User | Count |
---|---|
48 | |
42 | |
29 | |
28 | |
27 |