Allocation

G

Guest

Hi,

Looking for unique formula to allocate the past due amounts for customer
deliquency.

Col A = Monthly Payment
Col B = Total payments due
Col C = 30 days past due, Col D = 60 days past due etc. and goes up to Col H.

Col c thru h is not given. what is the unique formula for Col C thru H to
allocate monthly payments (maximum for each col) and adjust the remainder to
last column. (as per below example - col G is adjusted for 2 on first
customer and col F is adjsuted for next customer and Col H is (last col)
adjusted for last customer.

Thanks.

A B C D E F G H
5 22 5 5 5 5 2
17 55 17 17 17 4
20 140 20 20 20 20 20 40
 
G

Guest

in D to G

in D2 and copy across and down

=IF(MIN($B2-SUM($C2:C2),$A2),MIN($B2-SUM($C2:C2),$A2),"")

in H2:

=IF(MAX($B2-SUM($C2:G2),0),MAX($B2-SUM($C2:G2),0),"")

Copy down

There can be no formula for C2 other than =A2
 
G

Guest

Hi,

Thanks for the prompt reply. The formula only works for last customer. I get
diff result for first and second customer on col g and F respectively.

Dinesh
 
G

Guest

Using your data, I got the same results as your posting.

Copied from my spreadsheet

A B C D E F G H
5 22 5 5 5 5 2
17 55 17 17 17 4
20 140 20 20 20 20 20 40
 
G

Guest

I applogize for my mistake. I did not copy across, intead used the original
formula.

It works perfectly.

Thank you so much.

Regards,
Dinesh
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top