View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Pete_UK Pete_UK is offline
external usenet poster
 
Posts: 8,856
Default assign #N/A to blank?

Like this:

=IF(ISNA(your_formula),"",your_formula)

i.e. if your formula returns #N/A then return a blank, otherwise
return what your formula returns.

Hope this helps.

Pete

On Aug 19, 4:06*pm, Cam wrote:
Hello,

I have some cells with Vlookup formula that return #N/A value. How can I
tell it to show blank when it returns #N/A? Thanks