Forum Discussion
DebbieE
Community Champion
2 years agoPipeline containing 5 notebooks. can it be parameterised
I have the following pipeline They have to be run asynchrnously in this order I wonder if there was a way to parameterise so you only need one notebook that runs for each item? I g...
DebbieE
Community Champion
2 years agoI have cracked it. I added a csv of the Notebooks WorkspaceName, WorkspaceID, NotebookName, NotebookID. Then I did a lookup to the csv file. Then a for each loop. Sequential. Items
@activity('GetNotebookNames').output.value
In the for each loop added a Notebook
Workspace ID @item().workspaceID
Notebook ID @item().notebookID
This seemed to do the trick