Calculating Max Loan Amount based on Criteria

mecerrato

Board Regular
Joined
Oct 5, 2015
Messages
184
Office Version
  1. 365
Platform
  1. Windows
I have the following formula that calculates the maximum loan/line amount that a borrower qualifies for based on some criteria. The formula works fine but I would like to add a maximum limit based on another formula

This is the formula I currently have that calculates properly the maximum loan/line amount:
=IFERROR(IF(G15>G14,"",PV(G12/12,240,G13-((C19+G13)-(C20*G14)))*-1)-1,"")

I want to add functionality to cap the maximum line/loan amount at 90% of the value minus 1st mortgage balance, so the formula that I need to act as a cap is (C9*90%)-C10.

Can someone help me figure this out?

1652296264287.png
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Wouldn't it just be the minimum of the Max Line amount and the cap?
Specifically, =MIN(IFERROR(IF(G15>G14,"",PV(G12/12,240,G13-((C19+G13)-(C20*G14)))*-1)-1,""), (C9*90%-C10))
 
Upvote 0
Solution
Wouldn't it just be the minimum of the Max Line amount and the cap?
Specifically, =MIN(IFERROR(IF(G15>G14,"",PV(G12/12,240,G13-((C19+G13)-(C20*G14)))*-1)-1,""), (C9*90%-C10))
This worked perfectly, I could not get the syntax right, thanks.
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,177
Members
453,021
Latest member
Justyna P

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