I want a date to populate a field that will trigger a follow-up workflow. My criteria is:
- If the certification Complete is GREEN, this date can remain blank, as no follow-up will be sent.
- If the certification Complete is YELLOW or RED, the Manager has either partially completed (yellow) or not completed at all (red).
- The workflow initiated will be manually entered, when we add names
- If we have Yellow or Red status AND the initiated date is over 14 days old the Follow-up date should populate with a date, and that will trigger the workflow.
=IF([Certification Complete]@row <> "Green", IF([Date Certified]@row = "", [Workflow Initiated]@row <= TODAY(-14), 1))