How do you replace Vlookup #NA errors with zero or blank cell

huyle2103

New member
Joined
Sep 18, 2015
Messages
6
Reaction score
0
Points
0
How do you replace Vlookup #NA errors with zero or blank cell? Thanks!
 
1) Just copy all the cell.
2) Then click on your right button of mouse and select paste special from the menu. Then select values only. Or after copy just type alt+E+S+V to paste value.
3) Then type ctrl+h and right #N/A on "find what" and leave empty the "replace with". Then hit enter.

Your job will be done.
 
How do you replace Vlookup #NA errors with zero or blank cell? Thanks!
For Excel 2003
Code:
=IF(ISERROR(VLOOKUP-formula),"",VLOOKUP-formula)

For Excel 2007 and later
Code:
=IFERROR(VLOOKUP-formula,"")
 
1) Just copy all the cell.
2) Then click on your right button of mouse and select paste special from the menu. Then select values only. Or after copy just type alt+E+S+V to paste value.
3) Then type ctrl+h and right #N/A on "find what" and leave empty the "replace with". Then hit enter.

Your job will be done.

Would you need to repeat this every time N/A arises in a different location?
 
Back
Top