Excel IF语句表格式

时间:2015-01-11 14:33:31

标签: excel

请允许有人帮我提供以下IF声明。 我尝试了以下

IF(A2="",D1,IF(D1="",A1,IF(A2=A2,"",D1)))

但它似乎没有产生正确的答案。

不幸的是我无法发布我的excel s / h图片。

我需要确保

IF (Cell = number)
  //return as blank
ELSE IF(Cell = no number)
  // return number from Cell that has the number

由于

1 个答案:

答案 0 :(得分:0)

您可以翻译此公式:

IF (Cell = number)
  //return as blank
ELSE IF(Cell = no number)
  // return number from Cell that has the number

到工作表公式:

=IF(ISNUMBER(A1),"",B1)

这假定A1是要测试的单元格,如果B1 不是

,则A1是要返回的单元格。

如果你需要"链"这些公式(例如,如果您还需要验证B1也是一个数字),您可以将它们放在IF语句的Else部分中:

=IF(ISNUMBER(A1),"",IF(ISNUMBER(B1),"",C1))