Forum Discussion
Hettic
5 years agoFrequent Visitor
Power BI Embedded set Language
Hi community, I'm trying to set a default language for my embedded report. However it's currently using the language of the browser. Changing the language of the user that is running the rep...
- Anonymous5 years ago
Hi Hettic ,
Please review the following thread, hope it can help you.
Setting language and locale for embedded report
Best Regards
- 5 years ago
Changing the EmbedUrl worked:
EmbedUrl = $"{embedUrl}&language=nl&formatlocale=nl-NL"
Hettic
5 years agoFrequent Visitor
Yes I tried the "above mentioned" setting and off course that will work for me as a user.
But is is an embedded report so I would like to set it once for all users that are running the report.
Therefore I tried to set the settings for the back-end user (one service account) user that runs the report but that also did not solved it.
ferflo
3 years agoRegular Visitor
Hello Hettic,
Did you find a solution with the issue described above?
We are facing the same issue.
Thank you in advance
- Hettic3 years agoFrequent Visitor
This worked:
return new EmbedParameters { ReportName = reportName, EmbedUrl = $"{embedUrl}&language=nl&formatlocale=nl-NL", AccessToken = embedToken, EmbedTokenExpiry = embedTokenExpiry };