Hiding #N/A

F

FP Novice

How do I show cells as empty (that actually house VLOOKUP formulas) instead
of the default #N/A?

Todd
 
M

Marcelo

Hi

=if(iserror(vlookup(........))," ",vlookup*(..........))

hth
regards from Brazil
Marcelo

"FP Novice" escreveu:
 
D

Dave Peterson

=if(iserror(vlookup(...)),"",vlookup(...))

if you're using xl2007, you may want to try:
=iferror(vlookup(...),"")
 
Top