I created a stage duration field on the opp that shows how much days an opp has been in the current stage. I also have a Stage Status (green, yellow, red emoji). I want a task to be sent if it's in the stage for a certain number of days, and then also if reaches red. I activated this flow and it's not creating a task.
If the stage reaches the yellow range, it sends one task. If it's in the Red range, it sends another task.
#Flow
2 answers
Hi @Monica Raimondi,
- You have multiple conditions checking if Current Stage Duration = 46, 21, or 11.
- The flow will only run if the stage duration is exactly one of these values on the day the record is updated.
- If the record is updated before or after these days, the condition won't be met, and no task will be created.
- Additionally, the stage name must also match the specified conditions based on the following logic: ((1 AND 6) OR ((2 OR 3 OR 4) AND 7) OR (5 AND 8))
Is this understanding correct?