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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
AnandNamburi
Helper III
Helper III

Import mode export data will load only 1.5 lac record?

When we export the data using the more options from a power bi report in import mode do it will export only 150000 records?

If it is yes do we have any workaround to export all data. I';m using import mode and visual display is text table.

 

 

Thanks,

Anand

1 ACCEPTED SOLUTION

Hi @AnandNamburi ,

 

I could not reproduct your problem, here are the steps I took.


1. Download DAX Studio portable version and unzip it. Open the PBIX file and DAX Studio application.
  DAX Studio v2.16.2 (portable)       

vkkfmsft_4-1632473003691.png

 

2. Connect to the PBIX file.

 

 conne.png


3. Change the output to a file.

 

vkkfmsft_3-1632472762468.png

 

4. Query.

 

vkkfmsft_0-1632472456772.png

 

5. Save the output file. Make sure you have successfully exported the file.

 

vkkfmsft_1-1632472532054.pngvkkfmsft_2-1632472684672.png

 

Best Regards,
Winniz

 

View solution in original post

7 REPLIES 7
v-kkf-msft
Community Support
Community Support

Hi @AnandNamburi ,

 

In Import mode, you can export up to 150,000 rows of data.

 

vkkfmsft_0-1631854974765.png

 

If you want to export data overcome the limit of 150k rows, please try the following ways.

 

1. Runing R Script.

 

library(RODBC)
conn <- odbcDriverConnect("driver=SQL Server;server=.\\SQLEXPRESS;Database=MyDataBase")
odbcClearError(conn)
sqlSave(conn, dataset, tablename="MyR_table",rownames=FALSE, safer=FALSE, append=FALSE)
close(conn)

 

2. Using the Daxstudio.

 

     image.png             

  • Change the output to file:

     image.png

  • And run the following code:
EVALUATE 'MyTable'

     image.png

  • And save the file in the desired output.

     image.png


3. Using the Analyze in Excel feature.

 

Creating Excel “Data Dump” Reports From Power BI 

 

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.

Best Regards,
Winniz

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi When I tried through DAX studio, the file is getting downloaded but when I try to open it it was giving an error like the file was deleted/renamed like this.

Do you have any idea why I'm getting this error.

Hi @AnandNamburi ,

 

I could not reproduct your problem, here are the steps I took.


1. Download DAX Studio portable version and unzip it. Open the PBIX file and DAX Studio application.
  DAX Studio v2.16.2 (portable)       

vkkfmsft_4-1632473003691.png

 

2. Connect to the PBIX file.

 

 conne.png


3. Change the output to a file.

 

vkkfmsft_3-1632472762468.png

 

4. Query.

 

vkkfmsft_0-1632472456772.png

 

5. Save the output file. Make sure you have successfully exported the file.

 

vkkfmsft_1-1632472532054.pngvkkfmsft_2-1632472684672.png

 

Best Regards,
Winniz

 

After evaluate what I need to write, is it my workbook name or table name?

Hi @AnandNamburi ,

 

Has your problem been solved? If it is solved, please mark a reply which is helpful to you.

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.

 

Best Regards,
Winniz

Hi @AnandNamburi ,

 

You need to write the name of the table where you want to export the data.

 

Best Regards,
Winniz

amitchandak
Super User
Super User

@AnandNamburi , You can try python way

https://www.thebiccountant.com/2018/12/29/export-data-from-power-bi-to-csv-using-python/

https://pawarbi.github.io/blog/powerbi/python/sql/export/2020/06/23/export-powerbi-sql-python.html

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors