1
votes

We are using Powerapps Forms to manage the user input to a SharePoint list. For some labels(fields) in the form it is wanted that a thousands separator is added to enhance readability of numeric values (the value is displayed with separators in the list but not in the Form). Anyone experienced this Before and how /if this could be achieved?

1

1 Answers

2
votes

If you want to format number with thousands separator, you should be able to use the Text function:

Text( 12000, "$ #,###" )