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
Anonymous
Not applicable

Meta-Data - Visualisations

I have been able to export meta-data of my PowerBI file for Tables/Columns, Measures and Relationships.

 

The only thing missing from meta-data is visualisations data. For example, a simple chart on page 1 should have the following metadata:

 

Page = 1

Chart = Bar

Axis = Column_Month, Column_Year

Legend = Customer_ID

Value = Measure_Value_USD

 

Is there anyway I can generate a list of visuals and the measures / columns that are used in that visual?

 

Regards,

Sid

 

 

 

1 ACCEPTED SOLUTION

Hi @Anonymous,

Power BI don't support this feature currently base on my research. You can raise a new idea and add your comments there to make this feature coming sooner. 

Best Regards

Rena

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

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @Anonymous , 

 

I had the same issue like you had and for me the addin called "Power Bi Helper" was very useful. 

Power BI Helper - A Power BI Tool That Helps!

 

Best regards

Kevin

amitchandak
Super User
Super User

@Anonymous ,The information you have provided is not making the problem clear to me. Can you please explain with an example.

Appreciate your Kudos.

Anonymous
Not applicable

Using DAX Studio and the commands at the bottom of this post, I can generate an excel containing all the table columns, all the measures, and all the relationships of a PowerBI File. 

 

I want to be able to generate a list of visualisations. I don't need the data of the actual chart. I just need the type of data that "makes" the chart. For example, if my BI file has a line chart, and a matrix, I want the following info:

 

ChartID = 1, Chartype = Line, ChartAxis = COLUMNNAME, ChartValue = MEASURENAME

ChartID = 2, Chartype = Matrix, ChartColumn = COLUMNNAME, ChartRow = COLUMNNAME2, ChartValye = MEASURENAME

 

Does that make sense?

 

SELECT *
FROM $system.discover_storage_table_columns
WHERE dictionary_size > 0

 

SELECT *
FROM $SYSTEM.MDSCHEMA_MEASURES

 

select *
FROM $System.TMSCHEMA_RELATIONSHIPS

 

Hi @Anonymous,

Power BI don't support this feature currently base on my research. You can raise a new idea and add your comments there to make this feature coming sooner. 

Best Regards

Rena

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

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