Excel:检查IF语句中的错误

时间:2012-12-10 23:01:39

标签: excel

我正在尝试编写一个excel if语句。我是新手,使用Excel提供的所有额外功能。我正在使用一个名为importXML()的函数。我正在尝试检查我正在使用的函数是否生成“#VALUE!”错误如下:

if(
   importXML(B1,C1)!="#VALUE!" //check if no error generated, 
   importXML(B1,C1)//if no error is generated, use these cells in the function
   importXML(A1,C1)//else use these cells in the function
)

这可能吗?我是否正确使用excels if语句来检查错误?

1 个答案:

答案 0 :(得分:2)

试试这个:

=IF(ISERROR(importXML(B1,C1)),value_if_true,value_if_false)

ISERROR Function