I have tried to write a statement for the following function,
a question and answer sheet is converting text answers into numbers Yes = 1 No = 4 Maybe = 2 and various other qustions but converting to numbers 1,2 and 4 only
Answer to Question 1 into B1 Question 2 into B2 and Question 3 into B3
I total the section in Cell B4 and populate the cell with a statement depending on the answers some example answers below
IF B1=1,B2=1,B3=1 then it will state "TRUE CONTINUE"
IF B1=4,B2=4,B3=4 then it will state "FALSE STOP"
IF B1=2,B2=1,B3=1 then it will state "TRUE CONTINUE"
SO IN CELL B4 I HAVE THIS STATEMENT
=IF((AND(B1<=3,B2<=3,B3<=3)),"TRUE CONTINUE","FALSE STOP")
Before anyone types any information Cell B4 has the text "FALSE STOP" because I have used the false statement to fill the cell with text instead of leaving it blank.
how can I write the code which leaves the cell B4 blank until all the questions have been answered in Cells B1,B3
I have tried various nested statements using if , and , Or but the code stops working or partially works
thanks Ian