I have referenced the topic - How to pass a variable to magic ´run´ function in IPython for triggering a Notebook from another Notebook.
notebook = "/Users/xxx/TestFolder/Notebook1"
In the next cell, I am trying to call %run like this as per the solution suggested in the above article:
%run $notebook
I get the below error: Notebook not found: $notebook. Notebooks can be specified via a relative path. Is it possible to pass a string variable along with %run?
I could get around with something like this: dbutils.notebook.run(notebook, 300 ,{})