I'm creating an inventory checkout database, based on a sandbox version created by another community member, and am trying to figure out a formula to indicate if items are overdue. Our default check-out time is one business day, and I've managed to create a formula that auto-populates the default due date, and a formula (below) that will indicate if an item is overdue, past that default date
Solved
Conditional "IF" formula--directing Airtable to check a second cell if the first is blank
IF(
AND(
{Type}="Checking Out",
IS_AFTER(
TODAY(),{Due Date})
),
'OVERDUE')
BUT the issue I'm encountering is that sometimes, we extend checkouts in special circumstances. I've created an "Extended Due Date" field, so that staff can manually create an extended due date if needed. However, I'd now like to figure out a formula for this Overdue field that would tell Airtable to first check the Extended Due Date field, and use that if it's populated, and then, if that field is empty, check the Due Date field. How would I do this? Thanks in advance!
Best answer by MelloJello
IF({Extended Date},IF(AND({Type}="Checking Out",IS_AFTER(TODAY(),{Extended Date})),'OVERDUE'),IF(AND({Type}="Checking Out",
IS_AFTER(TODAY(),{Due Date})),'OVERDUE'))
Login to the community
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
