Forum Discussion
DebbieE
2 years agoCommunity Champion
Pipeline 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
1 year agoCommunity Champion
I 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