View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
[email protected] nstrom@ananzi.co.za is offline
external usenet poster
 
Posts: 4
Default Turning #N/A into an empty cell

Thansal wrote:
I have a VLOOKUP formula running that will generaly return #N/A because
I am just trying to get some data on a few cells from a rather large
group.

Is there some way to automaticly turn this error into an empty cells or
somethign equivilant?


Use the ISNA function inside an IF clause. ie.

=IF(ISNA(VLOOKUP(...)),"",VLOOKUP(...))

ISERROR also works but will trap any error cells.