View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Sheeloo[_4_] Sheeloo[_4_] is offline
external usenet poster
 
Posts: 225
Default Formula to answer three questions.

Try
=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")))

"Chad" wrote:

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