The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I am trying to build a visual based on data from SAP with actuals on posting data. I have used running total measure to display a cumulative graph over time. However, it either shows non-cumulative or cumulative but not sorted by proper month/year.
I would like the graph to display cumulative actuals over time (months and years) based on a CJI3 report from SAP.
What am i doing wrong?
See pictures attached.
Thank you kindly
Just write ALL function instead of ALLSELECTED.
Cumulative Actuals = CALCULATE( SUM('Table'[Actuals]),
FILTER( ALL('Table'[DateColumn]), 'Table'[DateColumn] <= MAX('Table'[DateColumn]) ) )
User | Count |
---|---|
25 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |