Oct 12, 2020 12:27 PM
Hi!
I have a project management base with a series of dates for different stages of the production process. I want to have a series of corresponding “Function” fields that would flip to “Past Due” when a deadline passes. I am very new to Airtable and have had difficulty with writing date-based formulas.
Thanks in advance!
Solved! Go to Solution.
Oct 12, 2020 02:28 PM
Hey @Shayan_Saalabi, welcome to the community!
You can use a formula like the one below for this. Note that I used Deadline as the field name (you’ll see it referenced within curly brackets) so you’ll need to adjust that based on the name of your date field.
IF(
AND(
{Deadline},
NOW()>{Deadline}
),
"Past Due"
)
Here’s an outline of the formula logic:
{Deadline}
field has a date enteredNOW()
function)Hope that helps! I’d also recommend browsing through our formula resources here in our support center.
Oct 12, 2020 02:28 PM
Hey @Shayan_Saalabi, welcome to the community!
You can use a formula like the one below for this. Note that I used Deadline as the field name (you’ll see it referenced within curly brackets) so you’ll need to adjust that based on the name of your date field.
IF(
AND(
{Deadline},
NOW()>{Deadline}
),
"Past Due"
)
Here’s an outline of the formula logic:
{Deadline}
field has a date enteredNOW()
function)Hope that helps! I’d also recommend browsing through our formula resources here in our support center.