May 10, 2023 06:02 AM - edited May 10, 2023 06:02 AM
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! Go to Solution.
May 10, 2023 08:00 AM
May 10, 2023 08:00 AM
May 10, 2023 08:32 AM
This solved the problem!! THANK YOU!! 😀
May 10, 2023 08:42 AM
Oh Good! Here is how I came to the solution:
First I add the check to see if there is anything in Extended Date. We do not need to specify what is in the cell, only that something is there.
IF({Extended Date},
Then I copied your existing formula that looks at the Due Date and changed it to look for the Extension Date.
IF(AND({Type}="Checking Out",IS_AFTER(TODAY(),{Extended Date})),'OVERDUE'),
Then to wrap it all up I added your original formula as is
IF(AND({Type}="Checking Out",IS_AFTER(TODAY(),{Due Date})),'OVERDUE'))
Each IF statement follows the same logic of:
IF(something is true, do this, otherwise do this)