Let’s say I have a workflow that runs through a handful of actions to produce a thing. I want a user to be able to control how many times that workflow runs. They can have it run once, twice, or up to six times using a number input, and that’s how many of the thing will be produced.
How would I accomplish this? I have no problem setting up the workflow for a one-time run. I have no problem creating an input where the user will choose how many “things” they want created. But how do I set the workflow to repeat based on that input?
You want to be using the Backend Workflows but it seems you already know this.
Any time you’re scheduling workflows on a list, you obviously need “list data”. In your case, the “list data” isn’t really relevant to the workflows themselves.
In this case, your “list data” can simply be a list of numbers. 1, 2, 3, 4, etc…
The question is how do you generate this list dynamically?
Yea, I thought maybe a Backend Workflow is what was needed. I just don’t have a good grip on them yet, conceptually. Not sure what you mean by “list data.”