Formula to answer three questions.

C

Chad

I can not get the formula right to answer three questions and then put a
statement up in excel.

The format ask the user three questions. They are the following:

1) Do you spend 100% of your work hours in the office
2)Do you spend some of your work hours in a office or visiting clients in
their offices
3)Do you spend the majority of your time in the field where you will be
exposed to construction related activities. Construction activities
includebut not limited to the follwing: heavy equipment, scaffolds,
excavations, use fall protection, traffic, aerial lift etc.

-- It is three yes or no answers. I have used If, true false statements
for the yes or no. the part where I am having trouble are the following:
First Scenerio- Yes, No and No I need the following statement to come up in
a cell below "Stop do not go any farther"
Second scenerio Question answered are No, Yes, No - "Stop do not go any
farther"
Third Scenerio Question answered as No, NO, Yes Statement is"Proceed"

Can anyone help me out. I have spent three days on this and still can not
figure it out. I have used Ifs, then, true false, I am a rookie at excel
so there could be a simpler way. T

Thanks
 
A

Alan

With the three answers in A2, B2 and C2, in D2:-

=IF(AND(A2="Yes",B2="No",C2="No"),"Stop",IF(AND(A2="No",B2="Yes",C2="No"),"Stop",IF(AND(A2="No",B2="No",C2="Yes"),"Proceed","")))

This will do it, but if any scenario is entered other than the three you
mentioned, or any cell is left empty, it will return a blank cell. You can
enter an error message in between the double quotes at the very end if you
wish.
I'm sure someone will come up with a more elegant way, although this works,
it's a bit clunky!

Regards,
Alan.
 
S

Sheeloo

Tr
=IF(A1="Yes",IF(A2="Yes",IF(A3="Yes","Yes-Yes-Yes","Yes-Yes-No"),IF(A3="Yes","Yes-No-Yes","Yes-No-No")),IF(A2="Yes",IF(A3="Yes","No-Yes-Yes","No-Yes-No"),IF(A3="Yes","No-No-Yes","No-No-No")))

Replace your result at the appropriate combination of Ans1-Ans2-Ans3
I have assumed that answers are in A1, A2 and A3 respectively...

I tried to put your answers in the formula... check this out...
=IF(A1="Yes",IF(A2="Yes",IF(A3="Yes","Yes-Yes-Yes","Yes-Yes-No"),IF(A3="Yes","Yes-No-Yes","Stop
do not go any farther")),IF(A2="Yes",IF(A3="Yes","No-Yes-Yes","Stop do not go
any farther"),IF(A3="Yes","Processed","No-No-No")))
 

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