We're reclaiming inactive PDIs to keep them available for active builders. Learn what's changing, who's affected, and how to protect your work. Read More

Generate 4th task only when all 3 parallel task state is closed complete

Sonali01
Tera Contributor

Sonali01_0-1782329784187.png

Please help me achieve how I can generate 4th task when all 3 parallel task gets status is closed complete.

Thanks

5 REPLIES 5

AshishV39002515
Tera Contributor

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