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 / Text Input not respect...
Power Apps
Unanswered

Text Input not respecting iPhone Number Format settings

(0) ShareShare
ReportReport
Posted on by 31

Hello,

 

We've encountered an issue with several end users now on iPhone where the user is unable to enter a decimal point in a text input control which only accepts numbers. When the user's device language is set to Spanish, but their number format setting is set to "1,234,567.89", all numbers in the Canvas app still use the "1.234.567,89" format. With these settings, the virtual keyboard only has a "." available, but the text input will not accept the "." and will only accept a "," for the decimal point character. Is there any workaround for this other than forcing the user to change their global device settings? Most of our users are using their personal devices so I really don't want to force them to change this setting just for work. 

 

Thank you,

Categories:
I have the same question (0)
  • TheRobRush Profile Picture
    11,128 Moderator on at

    assuming the text input just needs to be formatted in a certain way during the patch section of your app can instead of sending say, TextInput1.Text send

    With({finalValue: 
     With({justTheDigits: Split(Substitute(Substitute(TextInput1.Text, ".",""), ",", ""),"")},
     With({
     fullSets: Sum(CountRows(justTheDigits)-2-Mod(CountRows(justTheDigits)-2,3))/3,
     leftOver: Mod(CountRows(justTheDigits)-2,3)
     },
     Concatenate(
     Concat(FirstN(justTheDigits,leftOver), Value),".",
     Concat(ForAll(Sequence(fullSets) As fullPasses, Concat(LastN(FirstN(justTheDigits, leftOver+Sum(fullPasses.Value*3)),3),Value)), Value, "."),",", Concat(LastN(justTheDigits,2),Value)
     
     )))}, If(Left(finalValue,1)=".", Right(finalValue, Len(finalValue)-1), finalValue))


    this should adjust no matter how long the number is, and send it in, in ###.###.###,## format regardless if its typed in ###,###.## or ###.###,##

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 Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 377 Most Valuable Professional

#2
11manish Profile Picture

11manish 165 Super User 2026 Season 2

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 110 Super User 2026 Season 2

Last 30 days Overall leaderboard