how do i hide value errors until data can be entered?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i need to set a sheet up as a template and until the data is entred, the
#value! shows in the cell -- i want it to be blank until each person is able
to input their data
 
Hi Cath

embed your current formula in a IF function e.g.
=IF(A1="","",current_formula)
or
=IF(ISBLANK(A1),"",current_formula)
or
=IF(ISERROR(current_formula),"",current_formula)
 

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