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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
tasmiaa
Advocate I
Advocate I

How to obtain Power BI report measures and tables

Hi,

 

My company is working on a large documentation process for all of our Power BI reports, and I am looking to see if its possible for us to obtain all the data that makes up each report.

 

I looked into the audit logs, but those seem like they are only for event logging. I am looking for information on the tables, columns, and measures that are used in each report. Is this possible for me to obtain?

 

Thanks,

Tasmia

 

 

1 ACCEPTED SOLUTION
RMDNA
Solution Sage
Solution Sage

@tasmiaa,

 

If you have the PBIX, you can use DAX Studio. Tables are part of the default view.

 

To display all measures, use:

select * from $SYSTEM.TMSCHEMA_MEASURES.

 

To get all calculated columns, including system columns, use:

select * from $SYSTEM.TMSCHEMA_COLUMNS where [Type]  = 2

 

I don't think there'd be a way to do that out of the Service, because that would cause a ton of security issues for external users.

View solution in original post

2 REPLIES 2
RMDNA
Solution Sage
Solution Sage

@tasmiaa,

 

If you have the PBIX, you can use DAX Studio. Tables are part of the default view.

 

To display all measures, use:

select * from $SYSTEM.TMSCHEMA_MEASURES.

 

To get all calculated columns, including system columns, use:

select * from $SYSTEM.TMSCHEMA_COLUMNS where [Type]  = 2

 

I don't think there'd be a way to do that out of the Service, because that would cause a ton of security issues for external users.

Thank you, I'll give that a try. 

 

Do you know if its possible to automate that process?

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors