Calculating Debt service/payment to income ratio with a maximum payment

murraythek

Board Regular
Joined
Aug 31, 2015
Messages
61
I have a formula worked out for financial auto loans but the only problem is I need it to cap out @ $900.

I currently have a table set up where users enter the income (b22), rent (b23), monthly credit card debts (b24) and monthly insolvency debts (if any) (C32). It checks to see that it doesnt exceed our max DSR @ 48 and max PI @ 18.

The formula is hidden on two cells (G35/G36) and is as follows:

DSR: =IF(C32="",(B22*0.48)-B24-B23,(B22*0.48)-B24-B23-C32)
PI: =(B22*0.18)

I then have a cell that is viewable to all user on C17 and the formula is =MIN(G35,G36)

What this does is displays a maximum possible payment for the applicant. The only problem is we have a company policy max of $900 but this formula has no max. To avoid any confusion I need it to stop @ $900. Is this possible?
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Can you simply modify your formula in cell C17 to:
Code:
=MIN(G35,G36,900)
?

In such case, if any of the cells G35/G36 exceeds 900, the cell will display 900 (your maximum). If any of the cells G35/G36 is lower than 900, their respective value will be displayed.
 
Upvote 0

Forum statistics

Threads
1,214,787
Messages
6,121,565
Members
449,038
Latest member
Guest1337

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