Is there a way to define the notebook path based a parameter from the calling notebook using %run? I am aware of dbutils.notebook.run(), but would like to have all the functions defined in the reference notebook to be available in the calling notebook run.
basically something like:
path_suffix = "_test"
%run ./notebook_path${path_suffix}.
**this does not work, it just runs the notebook_path and ignores the variable.