If #1, #4, and either #2 or #3 are yes, then object is hazardous)

z75455

New Member
Joined
Mar 7, 2015
Messages
16
This is the question.

[TABLE="width: 444"]
<tbody>[TR]
[TD="colspan: 27"]5. Based on the evaluation above is the object a food safety hazard? (If #1 , #4 , and either #2 or #3 are yes, then object is hazardous)[/TD]
[/TR]
[TR]
[/TR]
</tbody>[/TABLE]

I would like cell A12 to show the text "object is hazardous" if these conditions are meet=if A1 & a4 And either A2 or A3 are yes.
:confused:
Thank you in advance for your help.
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
=and(a1, a4, or(a2, a3))
 
Last edited:
Upvote 0
Is you did not say what should be displaed if the conditions are not meet this will show blank
Code:
=IF(AND(A1="yes",A4="yes",OR(A2="yes",A3="yes")),"object is hazardous","")
 
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,240
Members
452,621
Latest member
Laura_PinksBTHFT

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