#N/A

R

Richard

I've got two formulas that display the #N/A when there is no data input. How
can I get rid of this and show nothing.
=Ceiling(B3/E3/F3*G3,3) and =VLOOKUP(A3,Part_Number,3,False)
Thanks in Advance!!
 
R

Ron Rosenfeld

I've got two formulas that display the #N/A when there is no data input. How
can I get rid of this and show nothing.
=Ceiling(B3/E3/F3*G3,3) and =VLOOKUP(A3,Part_Number,3,False)
Thanks in Advance!!

=IF(ISNA(your_formula),"",your_formula)

OR

Use Format/Conditional Formatting
Formula Is: =ISNA(cell_ref)
Format the font color to the same as the background color (e.g. white)
--ron
 

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