I have a process that I have divided up into 7 steps that execute sequentially. The output from each step is used as the input for the next step and a final output is generated after the last step.
I would like to create a user interface where the user could not only select which steps to execute (sequentially) but also to be able to determine the order in which they are executed. For example, maybe they would execute all 7 steps 1-7 sequentially but another user may want to only execute step 6 then step 3 and then step 5.
After the final step, an output is generated.
Each step populates the same two fields. Each successive step populates the same fields, but will not overwrite any existing data in that field which is why the order that the steps are executed in makes a difference.
I am familiar how to do this with VBA Excel coding and userforms where I would use list boxes and allow the user to specify which steps and the order in which to execute them. I am trying to migrate this to an Alteryx platform.
Thank You