Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Is there a way to download the notebook run snapshot?
Context:
I have a notebook(let's say X) running multiple notebooks(let's say A,B,C) from within it. So when a full run is complete, I can view the sub-notebooks but i want to download a copy to local of A. How may I do it?
Solved! Go to Solution.
Hi @ritikesh ,
It is possible to save the snapshot to another location but not download it locally, it is possible to download the notebook resource in Visual Studio Code but this is not a snapshot.
Use the following code to run multiple notebooks:
def run_notebook(notebook_path):: run_notebook(notebook_path).
try.
mssparkutils.notebook.run(notebook_path, 3600)
return {โnotebookโ: notebook_path, โstatusโ: โSuccessโ}
except Exception as e: return {โnotebookโ: notebook_path, โstatusโ: โSuccessโ}
return {โnotebookโ: notebook_path, โstatusโ: โFailedโ, โerrorโ: str(e)}
notebooks = [โNotebook 3โ, โNotebook 8โ]
results = [run_notebook(nb) for nb in notebooks]
# result
for result in results.
print(result)
At the end of the run click on notebook 3 to see a snapshot of what it looks like after the run, which can be saved to another location.
If you want to know more about โDownload notebook resource filesโ please refer to the official documentation below:
Work with notebook resources in Visual Studio Code - Microsoft Fabric | Microsoft Learn
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
Hi @ritikesh ,
It is possible to save the snapshot to another location but not download it locally, it is possible to download the notebook resource in Visual Studio Code but this is not a snapshot.
Use the following code to run multiple notebooks:
def run_notebook(notebook_path):: run_notebook(notebook_path).
try.
mssparkutils.notebook.run(notebook_path, 3600)
return {โnotebookโ: notebook_path, โstatusโ: โSuccessโ}
except Exception as e: return {โnotebookโ: notebook_path, โstatusโ: โSuccessโ}
return {โnotebookโ: notebook_path, โstatusโ: โFailedโ, โerrorโ: str(e)}
notebooks = [โNotebook 3โ, โNotebook 8โ]
results = [run_notebook(nb) for nb in notebooks]
# result
for result in results.
print(result)
At the end of the run click on notebook 3 to see a snapshot of what it looks like after the run, which can be saved to another location.
If you want to know more about โDownload notebook resource filesโ please refer to the official documentation below:
Work with notebook resources in Visual Studio Code - Microsoft Fabric | Microsoft Learn
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
Check out the November 2025 Fabric update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!