IFERROR in Excel 2003
问题 I understand from reading a couple of threads that IFERROR in Excel 2003 is preformed by an IF(ISERROR) . The code I am trying to replicate from Excel 2007+ is: =IFERROR(A1, "") I know there must be a simple solution to translating this to IF(ISERROR) , but I have had no avail. Advice would be greatly received. 回答1: The Excel 2003 equivalent of =IFERROR(A1,"") is =IF(ISERROR(A1),"") . See =IS. But neither version of that formula is very useful. A little more useful would be something like =IF