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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
degranadost
Frequent Visitor

How to know the size of each table of a dataset?

I want to know How can I get the size of each table of a dataset in power bi. Quisiera saber como obtener la información de cuanto pesa cada tabla de un dataset en Power BI.

2 ACCEPTED SOLUTIONS
AllisonKennedy
Super User
Super User

@degranadost  You can download the external tool DAX studio for free and get lots of info about your model that way: https://daxstudio.org/docs/features/model-metrics/ 


Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

View solution in original post

Kedar_Pande
Super User
Super User

  1. Download DAX studio, if you don't have
  2. Open your Power BI file and then open DAX Studio.
    Connect to your Power BI model.
  3. Run the Size Query
    EVALUATE

    ADDCOLUMNS (

    SUMMARIZE (

    VALUES ( __Table__ ),

    __Table__[Name],

    "Row Count", COUNTROWS ( __Table__ ),

    "Size (KB)", COUNTROWS ( __Table__ ) * 8 / 1024

    ),

    "Total Size (KB)", [Size (KB)] * COUNTROWS ( __Table__ )

    )

This will give you the row count and an estimate of the size in kilobytes for each table in the dataset.

If this helped, a Kudos 👍or a Solution mark would be awesome! 🎉
Cheers,
Kedar Pande
Connect on LinkedIn

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @degranadost ,

 

Pls has your problem been solved? If so, accept the replies as a solution and I think solutions from Kedar_Pande and AllisonKennedy are both great. This will make it easier for the future people to find the answer quickly.

If not, please provide a more detailed description.

 

Best Regards,

Stephen Tao

 

Kedar_Pande
Super User
Super User

  1. Download DAX studio, if you don't have
  2. Open your Power BI file and then open DAX Studio.
    Connect to your Power BI model.
  3. Run the Size Query
    EVALUATE

    ADDCOLUMNS (

    SUMMARIZE (

    VALUES ( __Table__ ),

    __Table__[Name],

    "Row Count", COUNTROWS ( __Table__ ),

    "Size (KB)", COUNTROWS ( __Table__ ) * 8 / 1024

    ),

    "Total Size (KB)", [Size (KB)] * COUNTROWS ( __Table__ )

    )

This will give you the row count and an estimate of the size in kilobytes for each table in the dataset.

If this helped, a Kudos 👍or a Solution mark would be awesome! 🎉
Cheers,
Kedar Pande
Connect on LinkedIn

AllisonKennedy
Super User
Super User

@degranadost  You can download the external tool DAX studio for free and get lots of info about your model that way: https://daxstudio.org/docs/features/model-metrics/ 


Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors