Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Multi-Language Support in Power BI Reports

I need to have a drop down to select the report language as English/Arabic. By default it should be selected to English. When i change that to arabic, all my components titles and headers alone need to be changed to arabic language.

 

How to do this ? Please help.

  • hi, Anonymous 

    Yes, you could get it by Expression-based titles in Power BI Desktop.

    Please create a separate table that only contains "English" and "Arabic"

    Then create a measure like this:

    Dynamic title = IF(SELECTEDVALUE('Dim language'[Language],"English")="English", <English expression>,<Arabic expression>)

    Now set the dynamic title for each visual.

     

    Regards,

    Lin

1 Reply

  • v-lili6-msft's avatar
    v-lili6-msft
    Icon for Community Support rankCommunity Support

    hi, Anonymous 

    Yes, you could get it by Expression-based titles in Power BI Desktop.

    Please create a separate table that only contains "English" and "Arabic"

    Then create a measure like this:

    Dynamic title = IF(SELECTEDVALUE('Dim language'[Language],"English")="English", <English expression>,<Arabic expression>)

    Now set the dynamic title for each visual.

     

    Regards,

    Lin