Jan 09, 2023 12:31 PM
Hello,
I need to create an aging formula with an If statement to track when a record is open with a count of days until it gets closed and ultimately stops counting. I then want to be left with the difference of days between the date opened and the date completed, in the days-old column. Currently, the Days old column counts days open from the date the record was created. DATETIME_DIFF(TODAY(), DATETIME_PARSE({Opened date}, 'MM-DD-YY'), 'days') and just keeps counting. Any help is appreciated!
Solved! Go to Solution.
Jan 10, 2023 02:16 AM
If I were you, I would:
1. Create a new Date field called "Closed Date"
2. Create a new Formula field called "Today's Date" and give it the formula `TODAY()`
3. Create an automation that triggers when a record is "Closed" (Not sure how you're doing this) that update the "Closed Date" field with the value from "Today's Date"
4. Modify the formula to find the difference between "Opened Date" and "Closed Date"
Should get you what you're looking for I reckon
Jan 10, 2023 02:16 AM
If I were you, I would:
1. Create a new Date field called "Closed Date"
2. Create a new Formula field called "Today's Date" and give it the formula `TODAY()`
3. Create an automation that triggers when a record is "Closed" (Not sure how you're doing this) that update the "Closed Date" field with the value from "Today's Date"
4. Modify the formula to find the difference between "Opened Date" and "Closed Date"
Should get you what you're looking for I reckon
Jan 10, 2023 12:00 PM
@TheTimeSavingCo Thank you again! I think I was trying to make it too hard. LOL. So I ended up with three date columns. (Opened Date, Date Closed, Days old) I changed the formula in the Days old column to be