Question on Formula for Available Funds

CMJ

New Member
Joined
Jul 26, 2012
Messages
11
Hi,

I'm trying to figure out the best way to automate the following financing / payment schedule, specifically the "Available Financing" column in bold below (based on a total number hard coded, in this case $500):

Payment AmountPercentage of ContractAvailable financingRequired Client Payment
$250.0025%$0.00$250.00
$250.0025%$0.00$250.00
$240.0024%$240.00$0.00
$240.0024%$240.00$0.00
$20.002%$20.00$0.00
$1,000.00100%$500.00$500.00

<tbody>
</tbody>



Essentially, if there is financing available for 50% of the project, I'd like that to automatically calculate at the END of the payment schedule - So in this scenario, financing available kicks in after the client has paid the $500, or 50% of the total value.

Any help would be much appreciated!
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Hi, this is probably do-able, but it's not clear to me exactly how you want this to work.

Can you explain exactly the logic you want to use in this calculation ?
Don't worry too much about explaining the real world application of this model, just focus on the data, and why you sometimes want to show 0, sometimes show the full payment amount, and sometimes show only part of the payment amount.

Are all the other columns already working correctly ?
 
Upvote 0
Hi, this is probably do-able, but it's not clear to me exactly how you want this to work.

Can you explain exactly the logic you want to use in this calculation ?
Don't worry too much about explaining the real world application of this model, just focus on the data, and why you sometimes want to show 0, sometimes show the full payment amount, and sometimes show only part of the payment amount.

Are all the other columns already working correctly ?

Thanks, Gerald. Yes, let me try to explain the logic.

I want a user to be able to input the total amount of that column (available financing), in this case $500. Based on total amount of payments (first column, $1,000), I know that the difference between available financing and payments required is $500. I need the "Required Client Payments" to total this difference before the "Available Financing" column kicks in. Essentially, any payments in the "Required Client Payments" need to precede the "Available Financing" payments. I hope I'm explaining this in enough detail, but it's difficult to verbalize without getting into the particulars of the real world application.

Currently, the "Required Client Payments" column is a simple =(A2-C2) type of formula, which is why I was focusing on the "Available Financing" column, but I'm open to suggestions on how to best adjust this.

Thanks for your help!
 
Upvote 0
Not sure i understand what you are looking for

See if this does what you need (a simulation with input in C7 = 600)


A
B
C
D
1
Payment Amount​
Percentage of Contract​
Available financing​
Required Client Payment​
2
250,00​
25%​
0,00​
250,00​
3
250,00​
25%​
100,00​
150,00​
4
240,00​
24%​
240,00​
0,00​
5
240,00​
24%​
240,00​
0,00​
6
20,00​
2%​
20,00​
0,00​
7
1000,00​
100%​
600,00​
400,00​

Formula in C2 copied down
=MAX(0,MIN(A2,C$7+A2-SUM(A2:A$6)))

Formula in D2 copied down
=A2-C2

Hope this helps

M.
 
Upvote 0
Not sure i understand what you are looking for

See if this does what you need (a simulation with input in C7 = 600)


A
B
C
D
1
Payment Amount​
Percentage of Contract​
Available financing​
Required Client Payment​
2
250,00​
25%​
0,00​
250,00​
3
250,00​
25%​
100,00​
150,00​
4
240,00​
24%​
240,00​
0,00​
5
240,00​
24%​
240,00​
0,00​
6
20,00​
2%​
20,00​
0,00​
7
1000,00​
100%​
600,00​
400,00​

<tbody>
</tbody>


Formula in C2 copied down
=MAX(0,MIN(A2,C$7+A2-SUM(A2:A$6)))

Formula in D2 copied down
=A2-C2

Hope this helps

M.

Thank you so much! That works perfectly. Have a wonderful day!
 
Upvote 0

Forum statistics

Threads
1,216,075
Messages
6,128,659
Members
449,462
Latest member
Chislobog

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top