Feb 11, 2020 02:31 PM
I am trying to make a formula that will create a status after a certain # of days has passed
Scenario
Client Makes Appointment
Appointment date is added to the record
The field called “Client Status” is changed to “Evaluating Proposal”
What I need:
IF:
7 days later the “Client Status” is still “Evaluating Proposal” then change the formula field to say “Follow Up Email OverDue”
Solved! Go to Solution.
Feb 11, 2020 02:42 PM
If I understand your scenario correctly, I think this will do what you want:
IF(
AND(
DATETIME_DIFF(
TODAY(),
{Date Appointment was Created},
'days'
) >= 7,
{Client Status} = "Evaluating Proposal"
),
"Follow Up Email OverDue"
)
You’ll need to capture the {Date Appointment was Created}
(I’m assuming this is the key date in the “7 days later” calculation, and not the actual {Appointment Date}
). This can be done either by capturing the Created Date
for the record in that type of field (if new records are created at the time an Appointment is booked) or by using a Last Edited
field that watches some key field that will indicate the Appointment was booked.
Feb 11, 2020 02:42 PM
If I understand your scenario correctly, I think this will do what you want:
IF(
AND(
DATETIME_DIFF(
TODAY(),
{Date Appointment was Created},
'days'
) >= 7,
{Client Status} = "Evaluating Proposal"
),
"Follow Up Email OverDue"
)
You’ll need to capture the {Date Appointment was Created}
(I’m assuming this is the key date in the “7 days later” calculation, and not the actual {Appointment Date}
). This can be done either by capturing the Created Date
for the record in that type of field (if new records are created at the time an Appointment is booked) or by using a Last Edited
field that watches some key field that will indicate the Appointment was booked.
Feb 11, 2020 02:51 PM
that worked!! Thank you
Feb 11, 2020 02:52 PM
You’re welcome :slightly_smiling_face: