Camparing against multiple criteria

cmerrick

Board Regular
Joined
Jun 8, 2017
Messages
78
Office Version
  1. 365
Platform
  1. Windows
Please help with a formula I'm trying to work out.

I'm trying to return a 'Pass' or 'Fail result based on the following.

My criteria is below.

A = Loan + Interest
B = Loan to Value (%) inc Interest

C = Max Loan @ 75% (£750,000)
D = Max Loan @ 70% (£1,000,000)

E = Max LTV 75%
F = Max LTV 70%

I need to display a 'Pass# result IF both A & B do not exceed C/D/E/F

But I need the formula to move in Brackets. It first needs to check if A or B exceed C or E, if they do, it should then check if they exceed D or F.

If A or B still exceed then the 'Fail' message should be displayed.

Please ask if you need a further explanation
 

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
Re: Camparing against multiple criteria. Help Please.

try this

Code:
=IF(OR(AND(A1>C1,A1>D1),AND(B1>E1,B1>F1)),"Fail","Pass")
 
Upvote 0

Forum statistics

Threads
1,214,927
Messages
6,122,311
Members
449,080
Latest member
jmsotelo

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