If And with greater than but less than statement

ecrodrig

Board Regular
Joined
Jan 21, 2022
Messages
99
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
Hello everyone,

I am trying to do an IF AND statement that does the following (what I want may be wishful thinking ) but here goes.

I want to say if A > B or A is equal to C, then True But needs to be inside an If(ANd statement because I have another condition that also needs to be met So the whole thing would be something like:

IF(AND( OTC="Closed", "A>B or A is = to C"), "Verified", "Check")

I would need help with the "A>B, or A is = to C" section.

Any help or suggestions would be greatly appreciated. Thanks
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
You can nest ORs inside of ANDs, i.e.
Excel Formula:
=IF(AND(OTC="Closed",OR(A>B,A=C)), "Verified", "Check")

NOTE: You didn't say what A,B, and C were. So really they are just place-holders here for whatever they are supposed to be.
If they are ranges, they will need a row component to them.
 
Upvote 0
Solution
Please try this
IF(AND(OTC="Closed",OR(A1>B1,A1=C1)),"Verified","Check")
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,893
Members
449,097
Latest member
dbomb1414

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