Hello Power Users,
I have below form and I am calculating percentage dynamically and submitting to SharePoint list. In SharePoint list, I have column PercentageValue (number type, 2 decimals and show as percentage) and I have used below formula in Text field of Power Apps.
Value(Text(DataCardValue2.Text/DataCardValue3.Text*100,"[$-en]#.00"))
After I submit, the value I am expecting in SharePoint is like #.##% but what it shows is ####.00%. I have taken another text column PercentageText and used below formula in Power Apps. It does show the right value #.##. But I would like to have it number field with desired output format #.##%. Where am I doing wrong?
Text(DataCardValue2.Text/DataCardValue3.Text*100,"[$-en]#.00")

