Skip to main content
Solved

Formula to ignore empty date field

  • January 29, 2021
  • 4 replies
  • 42 views

My current formula works. IF({Post Date}<{Today’s Date},‘READY’)
But if {Post Date} is empty it is also saying ‘READY’
What should I add to the formula that ignores a field if it is empty.

Best answer by Nick_Dennis

That didn’t work. It gave me this message.
Sorry, there was a problem saving this field. Invalid formula. Please check your formula text.


I think the formatting of the quotation marks may be getting screwed up by the Code formatting on the forum. Try deleting and rewriting all the quotation marks, so they are plain text.

4 replies

Forum|alt.badge.img+14
  • Participating Frequently
  • January 29, 2021

One way to do this would be to wrap that IF statement in another IF statement:
IF({Post Date}, IF({Post Date}<{Today’s Date},‘READY’))

You could also simplify this by using TODAY(), which would remove the need for the field {Today’s Date}:
IF({Post Date}, IF({Post Date}<TODAY(),‘READY’))


  • Author
  • New Participant
  • January 29, 2021

One way to do this would be to wrap that IF statement in another IF statement:
IF({Post Date}, IF({Post Date}<{Today’s Date},‘READY’))

You could also simplify this by using TODAY(), which would remove the need for the field {Today’s Date}:
IF({Post Date}, IF({Post Date}<TODAY(),‘READY’))


That didn’t work. It gave me this message.
Sorry, there was a problem saving this field. Invalid formula. Please check your formula text.


Forum|alt.badge.img+14
  • Participating Frequently
  • Answer
  • January 29, 2021

That didn’t work. It gave me this message.
Sorry, there was a problem saving this field. Invalid formula. Please check your formula text.


I think the formatting of the quotation marks may be getting screwed up by the Code formatting on the forum. Try deleting and rewriting all the quotation marks, so they are plain text.


  • Author
  • New Participant
  • January 29, 2021

It worked. Thanks for your help.