Turning N/A cells to blank Cells

A

amik

Is there somthing I can insert in to a vlookup formula so that if the cells
comes up N/A that it will be shown as a blank cell.

=VLOOKUP(D21,'Postpaid New'!$L$2:$BC$860,7,FALSE)

Any advice would be appreciated
 
J

Jacob Skaria

Use IF(ISNA(formula),"",formula) to handle this..

If this post helps click Yes
 
M

Mike H

Try this

=IF(COUNTIF('Postpaid New'!$L$2:$BC$860,D21)=0,"",VLOOKUP(D21,'Postpaid
New'!$L$2:$BC$860,7,FALSE))

Mike
 

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

Top