Hi,
There is a way to share value from one task to another, but this will only work when the pipeline is executed from workflow.
#Code from which you want to pass the value.
dbutils.jobs.taskValues.set(key='first_notebook_list', value=<value or variable you want to pass>)
#Code for notebook in which you want to access the previous notebook value.
list_object = dbutils.jobs.taskValues.get(taskKey = "<task_name_from_which_value_to_be fetched>", key = "first_notebook_list", default = 00, debugValue = 0)
Harshit Kesharwani
Data engineer at Rsystema