Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
arkiboys
Advocate II
Advocate II

save data in excel

hello,

in fabric dataflow, after some transformations, I have got the data.

Now I would like to save this data as excel.

How do I do this? 

thanks

1 ACCEPTED SOLUTION

Hi @arkiboys 
I am adding the code snippet here:

 

 

import pandas as pd
df = spark.sql("SELECT * FROM lakehouse_1.customers_1000")
df1= df.toPandas()
df1.to_excel('abfss://Fabric_new_04@msit-onelake.dfs.fabric.microsoft.com/lakehouse_1.Lakehouse/Files/sample.xlsx')

 


Just replace with the abfss path of your lakehouse files folder.

vnikhilanmsft_0-1716547187696.png

vnikhilanmsft_0-1716547413147.png

 



Hope this helps.

View solution in original post

6 REPLIES 6
v-nikhilan-msft
Community Support
Community Support

Hi @arkiboys 
Thanks for using Fabric Community.
Unfortunately, Fabric Dataflow (Gen2) itself doesn't have a built-in functionality to directly save the transformed data as an Excel file. However, you can achieve this by integrating Dataflow with Notebooks:

1) Give the destination as lakehouse in Dataflow Gen2 and publish the Dataflow . This will create a new table in your lakehouse.

vnikhilanmsft_0-1716546190813.png

 

vnikhilanmsft_1-1716546215216.png


2) Create a new notebook and run the below code:

vnikhilanmsft_2-1716546261320.png


3) The excel file will be created in Lakehouse files section.

vnikhilanmsft_3-1716546345377.png


4) You can also download this file into your local desktop using Onelake explorer.
Access Fabric data locally with OneLake file explorer - Microsoft Fabric | Microsoft Learn

5) Download the latest version of Onelake explorer and sync the Lakehouse.

vnikhilanmsft_4-1716546457629.pngvnikhilanmsft_5-1716546528738.png


Hope this helps. Please let me know if you have any further questions.







can you please send the pyspark equivalent to your notebook code?

thank you

Hi @arkiboys 
I am adding the code snippet here:

 

 

import pandas as pd
df = spark.sql("SELECT * FROM lakehouse_1.customers_1000")
df1= df.toPandas()
df1.to_excel('abfss://Fabric_new_04@msit-onelake.dfs.fabric.microsoft.com/lakehouse_1.Lakehouse/Files/sample.xlsx')

 


Just replace with the abfss path of your lakehouse files folder.

vnikhilanmsft_0-1716547187696.png

vnikhilanmsft_0-1716547413147.png

 



Hope this helps.

now that I can save the dataframe as .xlsx, how do I open the excel file which is now in the Files folder?

my goal is to eventually email this excel file to someone

thanks

Hi @arkiboys 
As specified above you can use Onelake explorer in your local machine to download the file. Then you can send it via email.

You can also download this file into your local desktop using Onelake explorer.
Access Fabric data locally with OneLake file explorer - Microsoft Fabric | Microsoft Learn

 

Download the latest version of Onelake explorer and sync the Lakehouse.

vnikhilanmsft_0-1716794456943.png

 

vnikhilanmsft_1-1716794456739.png

 

Hope this helps. Please let me know if you have any further questions.

Hi @arkiboys 

Glad that your query got resolved. Please continue using Fabric Community for any help regarding your queries.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors