Forum Discussion
Meta data translations - Dynamic
- 9 months ago
tobny76 Perhaps via the XMLA endpoint or maybe the REST API's?
Hi tobny76 ,
Thank you for reaching out to Microsoft community.
Use Power Query to import this translations table from the database into Power BI. This query will be part of the data model and can be refreshed every day during the refresh cycle.
let
Translations = Sql.Database("YourDatabaseServer", "YourDatabaseName", [Query="SELECT * FROM TranslationsTable"])
in Translations
Once the translations are imported, you can use DAX measures to reference the translation table and dynamically display the translated names in your reports based on the selected language. Once you have the dynamic translated column names via DAX, you can use these measures in your visuals to display the translated names in the report.
Hope this helps.
Thank you.