Blank Cell instead of #N/A

  • Thread starter Thread starter learning_codes
  • Start date Start date
L

learning_codes

Hi,

=VLOOKUP(A40,'WITH GOOD'!$A$2:$D$1000,2)

Is there a way to show "blank cell" instead of #N/A in the cell
"A40"?

Thanks
 
Try:

=IF(ISNA(VLOOKUP(A40,'WITH GOOD'!$A$2:$D$1000,2)),"",VLOOKUP(A40,'WITH
GOOD'!$A$2:$D$1000,2))
 
If your concern is how your spreadsheet prints and not with how it looks on
the monitor, go to Page Setup, and on the "Sheet" tab about two-thirds of the
way down choose, "Cell errors as: <blank>".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top