Forum Discussion
MiKeZZa
9 years agoPost Patron
DAX - Running total over months
I'm trying to present a running total. That is made with these DAX-formula (which I see on many places): RT = SUMX(FILTER(ALL('table'[startdate].[Date]),'table'[startdate].[Date]<=MAX('table'[beg...
- Anonymous9 years ago
MiKeZZa,
Please check if the following DAX returns your expected result, if not, please share sample data of your table for us to analyze.RT = SUMX(FILTER(ALL('table'[startdate]),'table'[startdate]<=MAX('table'[startdate])),'table'[unique days])
Regards,
Lydia
Anonymous
9 years agoNot applicable
MiKeZZa,
Please check if the following DAX returns your expected result, if not, please share sample data of your table for us to analyze.
RT = SUMX(FILTER(ALL('table'[startdate]),'table'[startdate]<=MAX('table'[startdate])),'table'[unique days])
Regards,
Lydia
MiKeZZa
9 years agoPost Patron
Thank you, this works.... I don't see the (real) difference with my DAX, but I'm very glad with this :)