How to run notebook inside another notebook in databricks?

Viewed 64

How to pass the dynamic path to %run command in databricks because the function used in another notebook needs to be executed in the current notebook?

1 Answers

dbutils.notebook.run(path = dbutils.widgets.get(), args={}, timeout='120')

Related