Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I am working on a Power BI report that needs to support two languages:
The challenge is that the data representation and layout need to change dynamically based on the selected language. This is because:
I am looking for a way to change both the language and the orientation at the same time, based on the user's language selection. Here’s what I need:
We are following up once again regarding your query. Could you please confirm if the issue has been resolved through the support ticket with Microsoft?
If the issue has been resolved, we kindly request you to share the resolution or key insights here to help others in the community. If we don’t hear back, we’ll go ahead and close this thread.
Should you need further assistance in the future, we encourage you to reach out via the Microsoft Fabric Community Forum and create a new thread. We’ll be happy to help.
Thank you for your understanding and participation.
Hi ,
In this scenario i suggest you to raise a support ticket here. so, that they can assit you in addressing the issue you are facing. please follow below link on how to raise a support ticket:
How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn
thanks,
Prashanth Are
I have not received solution.
@ashi7upt, As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided by @FarhanJeelani helps you? or let us know if you need any further assistance here?
Your feedback is important to us, Looking forward to your response.
Thanks,
Prashanth Are
MS Fabric community support.
Did w answer your question? Mark post as a solution, this will help others!
If my response(s) assisted you in any way, don't forget to drop me a "Kudos"
@ashi7upt, As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided by @FarhanJeelani helps you? or let us know if you need any further assistance here?
Your feedback is important to us, Looking forward to your response.
Thanks,
Prashanth Are
MS Fabric community support.
Did w answer your question? Mark post as a solution, this will help others!
If my response(s) assisted you in any way, don't forget to drop me a "Kudos"
Hi @ashi7upt ,
Dynamic language and direction changes in Power BI require a combination of measures, translations, and layout adjustments. Here’s how you can achieve this for English (LTR) and Arabic (RTL):
Language Table: LanguageID | LanguageName 1 | English 2 | Arabic
Translation Table: LabelKey | EnglishText | ArabicText Title | "Sales Report" | "Arabic Translation Here" Total | "Total Sales" | "Arabic Translation Here"
DynamicText = VAR SelectedLanguage = SELECTEDVALUE('Language Table'[LanguageName]) RETURN SWITCH( SelectedLanguage, "English", MAX('Translation Table'[EnglishText]), "Arabic", MAX('Translation Table'[ArabicText]), MAX('Translation Table'[EnglishText]) -- Default to English )
Use Bookmarks to create two separate layouts:
In the Arabic layout:
Use a DAX measure to dynamically control which bookmark is shown:
SelectedLayout = SELECTEDVALUE('Language Table'[LanguageName])
Use conditional navigation based on this measure.
TitleMeasure = SWITCH( SELECTEDVALUE('Language Table'[LanguageName]), "English", "Sales Overview", "Arabic", "Arabic Translation Here" )
When a user selects a language:
Let me know if you need further help or sample implementation!
Please mark this as solution if it helps. Appreciate Kudos.
Thank you for your response, it is helpful but it does not solve my full problem.
Is there a way to change the embedded report's direction based on the application's language selection from right to left on Arabic language selection from left to right when the English language is selected?
Hi @ashi7upt,
Hope you are doing well, Sorry for delayed response here.
PFB similar/duplicate thread answered by user in community forum:
Request for RTL Support When Embedding Reports in ... - Microsoft Fabric Community
Thanks,
Prashanth Are
MS Fabric community support.
Did we answer your question? Mark post as a solution, this will help others find answers quickly!
If my response(s) assisted you in any way, don't forget to drop me a "Kudos"
@ashi7upt , As we haven’t heard back from you, we wanted to kindly follow up to check if the above solution provided by our community member answers your query? let me know if you need any additional help.
Your feedback is important to us, Looking forward to your response.
Thanks,
Prashanth Are
MS Fabric community support.
Did we answer your question? Mark post as a solution, this will help others!
If my response(s) assisted you in any way, don't forget to drop me a "Kudos"
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
76 | |
61 | |
37 | |
33 |
User | Count |
---|---|
99 | |
56 | |
51 | |
42 | |
40 |