Excel - 有3个结果的IF

时间:2017-01-31 23:19:50

标签: excel if-statement excel-formula

这个问题已被提出并被回答,不幸的是,当我根据自己的情况调整答案时,所有我回来的都是#NAME?。我的需要是退出"肯定","否定"或者没有回应,如下

  • “肯定”任何数字> 0
  • “否定”任何数字< 0(负数)
  • 没有归零

我尝试=IF(A1=0;””;IF(A1<=0.01;”Negative”;“Positive”))使用分号和逗号。

任何帮助表示感谢。

1 个答案:

答案 0 :(得分:0)

您收到“”错误的原因是由于引用了引号" - 将它们更改为标准,并且它会起作用。

函数输入也应该由;而不是=IF(A1=0,"",IF(A1<0,"Negative","Positive")) 分隔,并且您的条件应该测试小于零:

//trigger a button click when orientation is changed to landscape mode
$(window).on('orientationchange', function(event) {
    if (window.orientation == 90 || window.orientation == -90) {
        $('.close-button').click();
    }
});