excel - Getting rid of both #N/A and 0 values in a single cell -


i know function =if(len(vlookup(e1,a2:b10,2,0))=0,"",vlookup(e1,a2:b10,2,0)) blank out cells return vlookup values of 0

and function =iferror(vlookup(e1,a2:b10,2,false),"") same thing #n/a errors, there way in single formula?

the data i'm using returning both 0 , #n/a because have account numbers missing account numbers have no information in return column.

sorry not posting screen shot reputation not high enough yet

i think once-through method it, no need "pretest" answer, use when lookup returns text answers.

=vlookup(e1,a2:b10,2,0)&""  =iferror(vlookup(e1,a2:b10,2,0)&"", "") 

if values numeric, original syntax fine, here merged one:

=iferror(if(len(vlookup(e1,a2:b10,2,0))=0, "", vlookup(e1,a2:b10,2,0)), "") 

Comments

Popular posts from this blog

javascript - oscilloscope of speaker input stops rendering after a few seconds -

javascript - gulp-nodemon - nodejs restart after file change - Error: listen EADDRINUSE events.js:85 -

Fatal Python error: Py_Initialize: unable to load the file system codec. ImportError: No module named 'encodings' -