Forum Discussion
Documentation
- 6 years ago
Hi dlwallace ,
We can edit the description in Model View of Power BI Desktop, then it wil show in Field Panel when edit the report.
But we did not find an effective way to show the description of measure in visual like tooltips, perhaps you can submit the requirement to ideas and add your comments there to make this feature coming sooner:https://ideas.powerbi.com/forums/265200-power-bi-ideas
Best regards,
Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi dlwallace ,
How about the result after you follow the suggestions mentioned in my original post?Could you please provide more details about it If it doesn't meet your requirement?
Best regards,
Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- dlwallace6 years agoFrequent Visitor
I entered the descriptions as suggested. Then I used DAX Studio to export all the measures to a file, ran a quick import to load those to the SQL DB, included that table in the PBIX model and created a report showing the results.
A bit complicated at first to set up, but quickly became routine for the other PBIX's. Result is a report showing measure names, descriptions and also the actual DAX code.
Would be great if there was a way built into PBI for users to see that description and maybe even the DAX code for measures. Trying to encourage self-service reporting. Showing them the DAX I've created can speed up their learning curve.
Thanks,
Dan
-- DAX Studio Query:
SELECT 'Claims' as PBIX, Measure_Name, [Description], Expression from $SYSTEM.MDSCHEMA_MEASURES WHERE measure_is_visible-- M Query:
-- = Sql.Database("SERVER NAME", "DB NAME", [Query="SELECT * FROM dbo.Measures WHERE PBIX = 'Claims'"])