Forum Discussion
KH11NDR
Helper IV
8 years agoHow do i create a calculated column or measure for totalling up another column as cumulative?
Hi Guys, This is what I want to do, create another column or measure that calculates Total sales per month per project. My data is exactly how it is in the table without the "Total Sales" column...
- Anonymous8 years ago
KH11NDR,
Please check attached PBIX file.
Regards,
Lydia
Anonymous
8 years agoNot applicable
KH11NDR,
Create a measure using DAX below.
total sales = CALCULATE(SUM(Table[Sales]),FILTER(ALL(Table[Date]),Table[Date]<=MAX(Table[Date])))
Regards,
Lydia