Suppress #VALUE! error on Spreadsheet

  • Thread starter Thread starter John Pierce
  • Start date Start date
J

John Pierce

This formula is in column C. When B1 is blank, the formula yeilds #VALUE!.
=IF(DATEDIF(B1,NOW(),"d")>=30,"Expired","")
Can I suppress the error with some code in the formula?
Tanks
 
one way:

=IF(B1<>"",IF(DATEDIF(B1,TODAY(),"d")>=30,"Expired",""),"")
 

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