Hi Team!
For some reason when I round to a decimal, powerapps doesn't show me the value as "3.0" otherwise it shows it as "3,"
I appreciate your help.
Solved! Go to Solution.
Part of the issue is because you're using Power Apps in Spanish. The numeric value "3.0" as understood by an English speaker, would natively be expressed as "3,0" when Power Apps is running in Spanish.
If you actually want to output "3.0", you explictly specify an English locale like so:
Text(3; "[$-en-US]#.0"; "en-US")
Text(3,"##.0")
output will be 3.0
https://docs.microsoft.com/en-us/power-platform/power-fx/reference/function-round
Why don't you use function round?
If you need additional help please tag me in your reply and please like my reply.
If my reply provided you with a solution, pleased mark it as a solution ✔️!
Best regards,
Gonçalo Nogueira
Check my LinkedIn!
Buy me a coffee!
Check my User Group (pt-PT)!
Last Post on Community
My website!
Part of the issue is because you're using Power Apps in Spanish. The numeric value "3.0" as understood by an English speaker, would natively be expressed as "3,0" when Power Apps is running in Spanish.
If you actually want to output "3.0", you explictly specify an English locale like so:
Text(3; "[$-en-US]#.0"; "en-US")