How to run Flows in Flow Designer.

__ __2
Tera Expert

Hi.

For Flows in Flow Designer, is there a way to run Flows continuously? For example, Flows_b will run automatically when Flows_a finishes running.
I want to run 100+ Flows like above.
Is there any way?

1 ACCEPTED SOLUTION

Mohit_Gupta
Tera Guru
Tera Guru

Hi @__ __2 ,

You can't call a flow from another flow but you can call a subflow from a flow.  Create a subflow for those two flows and they you can call the subflow from that third flow.

but you could also use the first Flow to do an action that triggers the 2nd Flow based on the 2nd Flow’s trigger…it could be easier if it’s a large Flow to copy it and change the trigger than to replicate as a Subflow.
Means the trigger is what starts the Flow, an event, record created, time of day....  Triggers are required on Flows.  If your Flow does not have a trigger it's a Subflow.  Suppose you have a Flow triggered by the creation of a new User record with a specific department set.  You could have your first Flow create a User record in that department.  The creation of the user record with the correct criteria then triggers the second Flow.
 
Below thread have same question and above answer copied from below link
 

I hope this helps 

Please mark my answer correct if this helps you 

Thanks

Mohit

View solution in original post

2 REPLIES 2

Mohit_Gupta
Tera Guru
Tera Guru

Hi @__ __2 ,

You can't call a flow from another flow but you can call a subflow from a flow.  Create a subflow for those two flows and they you can call the subflow from that third flow.

but you could also use the first Flow to do an action that triggers the 2nd Flow based on the 2nd Flow’s trigger…it could be easier if it’s a large Flow to copy it and change the trigger than to replicate as a Subflow.
Means the trigger is what starts the Flow, an event, record created, time of day....  Triggers are required on Flows.  If your Flow does not have a trigger it's a Subflow.  Suppose you have a Flow triggered by the creation of a new User record with a specific department set.  You could have your first Flow create a User record in that department.  The creation of the user record with the correct criteria then triggers the second Flow.
 
Below thread have same question and above answer copied from below link
 

I hope this helps 

Please mark my answer correct if this helps you 

Thanks

Mohit

thank you!