Hi,
I am very new to PowerApps so i have some very basic questions: how can I add comma or point between my numbers here (in my SharePoint list it shows correctly):
This is my current formula for this: LookUp('Site-Target',ID=8,Target)
And how do I add percentage icon after the number represented here:
Text entry: Slider1.Value%
Thanks,
Su
Solved! Go to Solution.
For the formating of the target, try tihs:
Text( Value(LookUp('Site-Target',ID=8,Target)), "#,###")
Hi,
For the percentage: Slider1.Value & "%"
Hi @Sussan ,
You can use Text function. Below is an example of comma and dot:
Text("12000", "#,###") => 12, 000
Text("12,000","#,###.00") => 12,000.00
For the formating of the target, try tihs:
Text( Value(LookUp('Site-Target',ID=8,Target)), "#,###")
Thank you very much!
User | Count |
---|---|
126 | |
87 | |
84 | |
75 | |
69 |
User | Count |
---|---|
214 | |
178 | |
139 | |
105 | |
83 |