I have a sheet that has rows added through an automated background process (not a form). As the rows come in, they are assigned a date in a column called "Date of Inquiry." There are two other pertinent columns in the sheet: a Harvey Ball column called "Status" and a dropdown-menu column called "Outcome." The Harvey Balls are RYGG and the Status options are In Progress, Overdue, Referred, Resolved and Abandoned.
I'm looking to automate two things.
First, in the Outcome column, I would like the default option when a row is added to be "In Progress." If a user does not manually change the Outcome to Resolved, Referred or Abandoned within 14 days of the Date of Inquiry, I would like that column to change to Overdue.
Second, I would like the Harvey Balls to correspond to the Outcome column.
For the Harvey Ball automation, I have this formula:
=IF(Outcome@row = "abandoned", "Gray", IF(Outcome@row = "In Progress", "Yellow", IF(Outcome@row = "Resolved", "Green", IF(Outcome@row = "Referred", "Green", IF(Outcome@row = "Overdue", "Red")))))
This is working fine. But, I am not sure how to manage the desired automation in the Outcome column