Replace #VALUE! in cells of a worksheet

P

Peterpunkin

How can I replace the result "#VALUE!" where it occurs in a worksheet with
"N/A"
or else how can I have the cell to the right of any cell bearing N/A also
display N/A?
 
B

Biff

Hi!

#VALUE! is the result from a formula. Try this:

=IF(ISERROR(your_formula_here)),"N/A",your_formula_here))

Biff
 
Top