Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi all,
I've created many different interpretations of this in Desktop, but *something* is ellusive in duplicating this calculated field/cumulative visual that comes standard in the Service version. I can see totals for each day, but cannot figure out how to get the running total, day over day, for the life of the project, to work. Can anyone help me figure out the DAX behind it, and/or what fields are used from the odata data model?
I have a separate table built for Date Dimension and it's joined to the various date fields in the timephased data tables.
Thanks!
Stefanie
This Blog will provide you complete information and No.of different DAX Formulas for calculating running totals.
Thanks, but that gave me all 0s. 😞 Also, I need it to sum over multiple years (projects span several years and need to capture plan/actuals for the whole project.
This is yielding the below, which is correct for each day, but it's not rolling the previous day's total in. The sum at the end is correct.
You should use this measure formula for counting running total for all the years in your fact table.
Note: DateKey is the name of the calender table.
@snetsmart Running total using date dimension can achieved as below.
=TOTALYTD( SUM( FactSales[SalesAmount] ) , DimDate[Datekey] )
User | Count |
---|---|
100 | |
66 | |
58 | |
47 | |
46 |