The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.
Solved! Go to Solution.
@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/
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
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
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
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
@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/
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