Help for - IF Formula

D

Deepak Sharma

Hi,

I need to create the formula to get the result as "Yes" or "No" in Cell D1

If the name in (A1 is "Deepak" and the name in B1 is "Deepak" and the name
in C1 is "Good" or "Fair", then in D1 it should show "Yes" else "No")
 
M

Mike H

Try this in D1

=IF(AND(A1="Deepak",B1="Deepak",OR(C1="Good",C1="Fair")),"Yes","No")
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.
 
F

FSt1

hi,
try this....

=IF(AND(A1="Deepak",B1="Deepak",OR(C1="good",C1="fair")),"yes","no")

adjust cell references to fit your data.

regards
FSt1
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top