Search code examples
pythonazure-synapse

Synapse Notebook reference - Call Synapse notebook from another with parameters


I have a synapse notebook with parameters .I am trying to call that notebook from another notebook. I am using %run command.

How should I pass the parameters from the base notebook to the one that is being called?


Solution

  • Can you use Python and follow the example shown here?

     mssparkutils.notebook.run("folder/Sample1", 90, {"input": 20 })