J John Wilson Jan 15, 2004 #2 Shaun, One way would be to change your formulas so that you don't het the #N/A (it looks ugly on the worksheet anyway). Basic format is: =IF(ISNA(yourformula),"",yourformula) John
Shaun, One way would be to change your formulas so that you don't het the #N/A (it looks ugly on the worksheet anyway). Basic format is: =IF(ISNA(yourformula),"",yourformula) John
T Tom Ogilvy Jan 15, 2004 #4 modify your formula so it doesn't produce #N/A =if(iserror(formula),"",formula)
P Perry Jan 15, 2004 #5 Use the ISNA() worksheet function to test the outcome of another function, like (pseudo): =IF(ISNA(SomeOtherFunction);"";SomeOtherFunction) Krgrds, Perry
Use the ISNA() worksheet function to test the outcome of another function, like (pseudo): =IF(ISNA(SomeOtherFunction);"";SomeOtherFunction) Krgrds, Perry