- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2019 07:03 AM
I am trying to setup 4 parallel tasks. I want task #3 to wait for completion before firing off the task 4. How do I achive this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2019 07:33 AM
You need to have Step 3 connect to Step 4. Step 4 will then connect to your Join.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2019 07:12 AM
Here is an example of running parallel tasks, and waiting for them to be completed before moving forward. This means that the tasks can be completed in any order but must all be marked as complete before moving on.
In order to have Task 4 start AFTER Task 3 has been completed you put Task 4 immediately after Task 3. So Task 3 connects to Task 4. Task 4 connects to the Join.
Does that help?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2019 07:12 AM
Connect flow in this way:
Task 3 activity (Once closed) -> Create Task 4

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2019 07:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2019 07:27 AM