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.
Hi,
I am connecting to a Lakehouse from a Notebook within Microsoft Fabric. I run an analysis on a dataframe, e.g. ydata_profiler using a PySpark, that produces an inline report of my data. Great, but...
How do I export or share that report with business users, quickly? The profile report is interactive so a pdf won't suffice. I want to know in general what the best way is of sharing data science progress with stakeholders is, outside of the Fabric Notebook (that is not PowerBI which is incredibly slow, clunky and adds too many extra steps).
In RStudio, I would use a Shiny app. I tried looking at the streamlit python package, but I can't get it to run in Fabric notebook (I might be doing something wrong however).
Is there something that will work directly from a Fabric Notebook?
Thanks
Current workflow is:
Read Lakehouse table into a Spark datafram in a Notebook
Run any analysis (e.g. a ProfileReport from ydata_profiler package)
Write the profile report to an html file in the Lakehouse
Use OneLake file explorer in windows explorer to view the html file in a browser (requires installing OneLake file explorer (https://learn.microsoft.com/en-us/fabric/onelake/onelake-file-explorer))
Kinda works for now
Yeah, so the best move is probs exporting your notebook output to OneDrive or Azure Blob Storage and just sharing access from there. You can also save stuff as CSV or Parquet files and plug it into Power BI or whatever dashboard tool you like. Fabric doesnโt let you share live notebook progress yet (rip), but this workaround works fine. Honestly, hoping Microsoft adds a built-in way to share soon would make life way easier for collabs and updates. You can also visit my website.
Yeah, so the best move is probs exporting your notebook output to OneDrive or Azure Blob Storage and just sharing access from there. You can also save stuff as CSV or Parquet files and plug it into Power BI or whatever dashboard tool you like. Fabric doesnโt let you share live notebook progress yet (rip), but this workaround works fine. Honestly, hoping Microsoft adds a built-in way to share soon would make life way easier for collabs and updates. You can also visit my website.
What Doesnโt Work Well
Best Ways to Share Interactive Reports Outside Fabric
1. Export Data + Host Streamlit Locally
Since Streamlit doesnโt run inside Fabric, you can:
This gives you full interactivity and control.
2. Use HTML Export from Profiling Tools
If you're using ydata-profiling, you can export the report as an HTML file:
profile = ProfileReport(df) profile.to_file("report.html")
Then share the HTML file via email, Teams, or a shared drive. Itโs interactive and lightweightโno need for Streamlit.
3. Fabric + OneLake + External App