web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Enabling Translation W...
Power Apps
Suggested Answer

Enabling Translation With in the Power Apps

(0) ShareShare
ReportReport
Posted on by 7,431 Super User 2026 Season 1
Hello Super Users / Developers,
 
I am having Power apps application having SQL as backend till date everything in English language. Now they want to extend the multilingual search across the application. 
 
Is it possible and can some one provide insights on this implementations 
Categories:
I have the same question (0)
  • CurtisAmrein Profile Picture
    38 on at
    (see reply below)
     
  • Suggested answer
    CurtisAmrein Profile Picture
    38 on at
    Hello! I think this can be done by making changes to your SQL data model.
     
     
     
    For example, if you want to translate the labels on a form (not the input values), you could create a table that maps the label in question to the value it should display. Let's assume the label is called "Label1" in the app (though you could use other identifiers besides the name of the control). We'll call the table tblFieldLabels
     
     
    ControlName Language Value
    Label1 English Name
    Label1 Spanish Nombre
    Label1 Hindi नाम
    If we were hard coding the Spanish value (which we shouldn't, but bear with me), the text property of the label would be:
      
    LookUp( 
    tblFieldLabels, 
    And(
    ControlName = "Label1",
    Language = "Spanish" 
    )
    ).Value
      
    To make the language dynamic, you could set a variable, which we'll call varLanguage. This could be set when the app launches (based on the user's profile, location, or even a dropdown that the user interacts with). In that case, you can use the variable in the language part of the lookup.
     
    (Somewhere else in the app):
     
    Set(
    varLanguage,
    "Spanish"
    )
     
    In the text property of the label:
     
    LookUp(
    tblFieldLabels,
    And(
    ControlName = "Label1",
    Language = varLanguage
    )
    ).Value
     
    Hope that helps!
      
    If this response resolves your issue, please mark it as the Verified Answer so it can help other community members as well.
    ---------------------------------------------------------------------------------
      
    📩 Need more help? Mention @CurtisAmrein to get my attention.
    ✔️ Please forget to Accept as Solution if this guidance worked for you.
    💛 Your Like motivates me to keep helping!
  • Power Platform 1919 Profile Picture
    2,254 Super User 2026 Season 1 on at

    Hi,

    To add to @CurtisAmrein’s response: you can use the Language() function to dynamically retrieve the language code of the logged‑in user. For text translation, apply the method described earlier (such as a translation table or connector). For number formatting or conversion, use the Text() function with either a fixed locale or the user’s current language code, for example:


    Example:
     
    // Format number in Danish
    Text(100, "0", "da-DK")
    // Format number in the user’s language
    Text(100, "0", Language())
     
    This approach ensures your app adapts automatically to the user’s locale for numbers, dates, and times, while translations for static text are handled separately.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 424

#2
WarrenBelz Profile Picture

WarrenBelz 355 Most Valuable Professional

#3
11manish Profile Picture

11manish 290

Last 30 days Overall leaderboard