Generate 4th task only when all 3 parallel task state is closed complete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Please help me achieve how I can generate 4th task when all 3 parallel task gets status is closed complete.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @Sonali01 ,
Requirement -
In Flow Designer, if you have 3 tasks running in parallel and want to generate the 4th task only after all three tasks are in "Closed Complete" state, you can achieve this using a Parallel Flow Logic followed by a condition.
I would suggest the below approach to generate the 4th task-
├── Parallel Branch 1 → Create Task 1
├── Parallel Branch 2 → Create Task 2
└── Parallel Branch 3 → Create Task 3
│
Wait for all branches to complete
│
If Task1 = Closed Complete
AND Task2 = Closed Complete
AND Task3 = Closed Complete
│
Create Task 4
Steps to perform -
1.Create 3 tasks in Parallel branches.
2.Add a Wait for Condition in each branch for Closed Complete.
3.After the Parallel block, create Task 4.
Please mark this as Correct Answer/Helpful if it helped you.
Thanks & Regards,
Ashish Verma