IF Formula Help

G

Guest

Hi there. Here is my dilemma

Columns
A B C D
Row 1 TRUE FALSE FALSE TRUE

I would like to put a formula in cell E1 that says something to this effect:

If A1 or B1 or C1 equals False, then False. However, if D1 equals True (No
matter what happens in A1, B1, or C1) then True.

Thanks for the help.
 
G

Guest

Ttry this:
=IF(D1=TRUE,TRUE,IF(OR(A1=TRUE,B1=TRUE,C1=TRUE),TRUE,FALSE))

Typically, if you are looking to evaluate text you would need to put the
text in quotes but TRUE and False are not text to excel.
 

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

Similar Threads


Top