Forum Discussion
vejas
8 years agoHelper I
running total DAX
I have related tables - Debt_table ,Calendar Debt table columns: Date | Client | Sell/Payment I calculate running total , to know clients debt balance to date. Total Debt = CALCULATE(...
- 8 years ago
Solution is to run FILTER against Calendar table , not Debt_table.
CALCULATE([Total Sell/Payment],FILTER(ALL('Calendar'[Date]),'Calendar'[Date]<=MAX('Calendar'[Date])))
Ashish_Mathur
8 years agoSuper User
Hi vejas,
Try this
=CALCULATE([Total Sell/Payment],FILTER(ALL(Debt_table[Date]),Debt_table[Date]<=MAX(Debt_table[Date])))
Hope this helps.
- vejas8 years agoHelper I
This is not working. (Debt_table[Date]) dont work even without Client.
Thanks
- Ashish_Mathur8 years agoSuper User
Hi,
Share the link from where i can download your file.
- vejas8 years agoHelper I