Help

If Formula with Dates

3403 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Randal_MacCrea
4 - Data Explorer
4 - Data Explorer

I’m trying to use this formula to tell me if an item is in our inventory or not based on the delivery date. If the delivery date is before today, it’s no longer in our stock.

IF(IS_AFTER({Delivery Date}, TODAY( )), “Yes”, “No”))

This formula is giving me an error and I can’t figure out why. Is the formatting wrong? Is there any other way to accomplish this?

Basically, I want the output to be “Yes” if the {Delivery Date} is after today, and “No” if it’s before today.

2 Replies 2
Ptt_Pch
8 - Airtable Astronomer
8 - Airtable Astronomer

I think you’ve got a bracket “too much” at the end of your formula

IF(
	IS_AFTER({Delivery Date},TODAY()), 
	"Yes",
	"No"
)

Oh my God! So simple. Thank you. I thought I had tried everything.