hiding #N/A

J

John Wilson

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
 
P

Perry

Use the ISNA() worksheet function to test the outcome
of another function, like (pseudo):

=IF(ISNA(SomeOtherFunction);"";SomeOtherFunction)

Krgrds,
Perry
 
Top