Help! Multiple formulas in one string

metz321

New Member
Joined
Jun 8, 2011
Messages
1
I'm trying to create a formula that will return a "yes" if specific criteria is met. However, the criteria is a bit complicated. Here is what I have do far, but I'm getting an error.

=IF(OR(AND(OR(B4="0001486",B4="0004972",B4="0001568"),L4>45),(AND(OR(B4="0003605",B4="0041133"),L4>30),(AND(OR(B4="0033495",B4="0000000"),L4>35)))),"yes","")

Please help!
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Try thi:
=IF(OR(AND(OR(B4={"0001486","0004972","0001568"}),L4>45),AND(OR(B4={"0003605","0041133"}),L4>30),AND(OR(B4={"0033495","0000000"}),L4>35)),"yes","")
 
Upvote 0

Forum statistics

Threads
1,224,574
Messages
6,179,628
Members
452,933
Latest member
patv

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