Hello!
Is there an way to have the currency format (like US$) while typing the value/price in PowerApps app?
We found an way, in the KB, to formar the field in the exibition (after input), but users get confused when typing the numbers in PowerApps forms.
Thanks in advance.
Solved! Go to Solution.
Hi @RickBr,
Do you want to format the value as currency format ($) when you type value/price in TextInput control?
I have made a test on my side, if you want to format the value as currency format ($) when you type value/price in TextInput control, I afraid that there is no direct way to achieve your needs in PowerApps currently.
As an alternative solution, please take a try with the following workaround:
"$"
Set the Align property of the Label control to following:
Align.Center
Set the Visible property of the Label control to following:
If(!IsBlank(TextInput1.Text),true,false)
Label1.Width
The GIF image as below:
Best regards,
Kris
Hi @RickBr,
If you put "$" in the Default property of the TextInput control It will stay there when the user adds the number. You can strip the $ off when you save the data with either Value(Texinput1.Text) or Mid(TextInput1.Text,2). The first will truncate the number by removing trailing 00, the latter will save the number with trailing 00.
Hi @RickBr,
Do you want to format the value as currency format ($) when you type value/price in TextInput control?
I have made a test on my side, if you want to format the value as currency format ($) when you type value/price in TextInput control, I afraid that there is no direct way to achieve your needs in PowerApps currently.
As an alternative solution, please take a try with the following workaround:
"$"
Set the Align property of the Label control to following:
Align.Center
Set the Visible property of the Label control to following:
If(!IsBlank(TextInput1.Text),true,false)
Label1.Width
The GIF image as below:
Best regards,
Kris
Ridiculous that you have to jump through these hoops for a very mediocre solution to something so basic.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
User | Count |
---|---|
164 | |
94 | |
64 | |
60 | |
60 |
User | Count |
---|---|
243 | |
163 | |
94 | |
84 | |
82 |