2 if(and statements

debralee

New Member
Joined
Dec 30, 2016
Messages
11
GOOD AFTERNOON,
I HAVE STRUGGLED ENOUGH TRYING THIS NOW ITS TIME TO ASK THE GURUS.

WORKING WITH 2 COLUMNS:
F WILL ONLY CONTAIN 0 OR 1
H WILL ONLY CONTAIN YES OR NO

SHOULD IT BE IF AND OR? PLEASE HELP

=IF(AND(F3="1",H3="Yes"),"COMPLETE","INCOMPLETE",IF(AND(F3="0",H3="No"),"COMPLETE","INCOMPLETE")

1,YES COMPLETE
O,NO COMPLETE
0,YES INCOMPLETE
1,NO INCOMPLETE
 

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.
If F contains numbers rather than text try
=IF(OR(AND(F3=1,H3="Yes"),AND(F3=0,H3="No")),"COMPLETE","INCOMPLETE")
 
Upvote 0
debralee, Good evening.

-------------------------------------------------
Please, don't write your message in capital letters.
-------------------------------------------------

Try to use:

=IF(F3=1,IF(H3="YES", "Complete", "Incomplete"), IF(H3="NO", "Complete", "Incomplete" ))

Is that what you want?
I hope it helps.

Ps.: The formula of the message above is more elegant than mine.
. . . .Choose Fluff's formula.
 
Last edited:
Upvote 0
Glad we could help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,875
Messages
6,122,037
Members
449,062
Latest member
mike575

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