我正在尝试编写一个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语句来检查错误?
答案 0 :(得分:2)