Forum Discussion
Calculate with Sum Function
I am looking for client name where the "Total amount" is greater than "0" No of days,
please ignore "cust No"
- sandee6 years agoHelper I
It is not working .
- Greg_Deckler6 years agoCommunity Champion
sandee - OK, let's back-up. Sample data as text that I can copy. Expected output from said sample data. We are just going to spin our wheels otherwise. If you provide this, I will mock this up in a PBIX file that I keep and get to a working solution.
- sandee6 years agoHelper I
hi Greg,
link for my sample data.
https://drive.google.com/file/d/1y5D0j94Y3PrDeUCd5Or7tEgEtNzW25eH/view?usp=sharing
- amitchandak6 years agoSuper User
sandee ,
in case days overdue is a measure
calculate(sumx(filter(Values('Working ledger'[customer]),[Days overdue]>0),[TotalSum]), all('Working ledger'))
calculate(sumx(filter(All('Working ledger'[customer]),'Working ledger'[Days overdue]>0),[TotalSum]))
calculate(sumx(filter(All('Working ledger'),'Working ledger'[Days overdue]>0),[TotalSum]))- sandee6 years agoHelper I
Hi Amit,
not working any of them .