Forum Discussion
twilbour
4 years agoHelper I
Problem with Running Total
I am creating a general ledger detail report, that shows all the transactions within a department, account and date range. I want a running total measure that starts with the first displayed transac...
amitchandak
4 years agoSuper User
twilbour , baed on what I got, a Meausre like this will not change with date filter
Cumm = CALCULATE([LineTotal],,filter(all('Date'),'Date'[date] <=max('Date'[date])))
twilbour
4 years agoHelper I
This doesn't work. Tried this as one of my earlier iterations. This results in every date (whether blank or not) being added to the display. So I get at least 30 rows per section - most blank.