Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/facebook/8.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Excel formula Excel 2010嵌套IF和station_Excel Formula - Fatal编程技术网

Excel formula Excel 2010嵌套IF和station

Excel formula Excel 2010嵌套IF和station,excel-formula,Excel Formula,我试图为以下函数编写一个语句 问答表将文本答案转换为数字Yes=1 No=4 Maybe=2和各种其他问题,但仅转换为数字1、2和4 将问题1回答为B1,将问题2回答为B2,将问题3回答为B3 我对单元格B4中的部分求和,并根据下面的一些示例答案使用语句填充单元格 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,B

我试图为以下函数编写一个语句

问答表将文本答案转换为数字Yes=1 No=4 Maybe=2和各种其他问题,但仅转换为数字1、2和4

将问题1回答为B1,将问题2回答为B2,将问题3回答为B3

我对单元格B4中的部分求和,并根据下面的一些示例答案使用语句填充单元格

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"
所以在B4号牢房里我有一个声明

=IF((AND(B1<=3,B2<=3,B3<=3)),"TRUE CONTINUE","FALSE STOP")
=IF((和(B1试试这个)(假设你的IF语句在输入所有答案时都在做它应该做的事情)


=if(或(B1=”,B2=”,B3=”),if((和)(B1)这很好,我知道我现在没有做什么,条件格式的好提示谢谢,在这种情况下,我在数据输入单元格中使用了一个下拉框,用于阻止空格等。感谢您的帮助
=if(or(B1="",B2="",B3=""),"",IF((AND(B1<=3,B2<=3,B3<=3)),"TRUE CONTINUE","FALSE STOP"))