Hello,
I am a beginner.
Can't create an aging balance customer.
example:
Customer | Total balance | Age balance<0 days | Age balance>0 days | Age balance 0-15 days | Age balance 16-30 days | Age balance 31-45 days | Age balance 49-999 days |
Slicer:
year
month
day
thanks
Arturas
Solved! Go to Solution.
Hi @Sarutra
Try it
Balance Total =
VAR balans =
CALCULATE(SUM('sales-payments'[Debet])-SUM('sales-payments'[Credit]),ALL('Calendar'[Date]))
return
IF(ISBLANK([running total_DEB]),BLANK(),
balans
)
Hello,
a big thank you, its work
Arturas
Hello,
I updated the file
calculate
Hi @Sarutra. I looked at your file, and you're right: you can't create an aging balance for customers because your data is incomplete. With an A/R againg analysis, you take all outstanding invoices and determine how old they are. Unfortunately you can't determine which invoices are outstanding or not. You would need to have some kind of status on invoices that indicates "paid" or "not paid" in order to do this correctly.
Good luck!
Hi @Sarutra
Try it
Balance Total =
VAR balans =
CALCULATE(SUM('sales-payments'[Debet])-SUM('sales-payments'[Credit]),ALL('Calendar'[Date]))
return
IF(ISBLANK([running total_DEB]),BLANK(),
balans
)
Hi,
@Sarutra I apologize for not expanding on this earlier, but I'd like to explain why the first out, first paid model doesn't quite work.
Picture you credit card bill...
Date | Vendor | Amount | Description |
2-Jan | Apple | $30 | Apple Music, iCloud |
3-Jan | McDonalds | $8.50 | Breakfast |
4-Jan | McDonalds | $8.50 | Breakfast |
5-Jan | ABT | $1,200 | Dryer |
6-Jan | McDonalds | $8.50 | Breakfast |
7-Jan | McDonalds | $8.50 | Breakfast |
8-Jan | Drizzly | $40 | Friday booze |
Except you didn't order a dryer from ABT on January 5th. You're not going to pay that.
It's no different for for employer/client. They're going to want matching of Purchase Order, Proof of Delivery and Invoice. If you're simply paying down oldest invoice first without regard to whether that invoice is approved for payment, it's not going to be received well.
You need to have some kind of indicator for specific invoices and approved for payment. It's not quite as simple as the proposed solution suggests.
I have a degree in accounting so I know what I'm talking about 😉
User | Count |
---|---|
127 | |
52 | |
33 | |
31 | |
27 |
User | Count |
---|---|
152 | |
57 | |
37 | |
33 | |
26 |