I have a number from a calculation 0.0001186049010045943 that in my legacy .Net app displays as 1.19E-4 and now I want to display the same number in Power Apps.
When I use Text(number, "[$-en-US]0.##E+0" ) I get 0.E+0
In .Net the number was declared as a Double and I used ToString("0.##E+0") to get the correct format of 1.19E-4
How can I get it displayed as 1.19E-4 in Power Apps? I tried Round and changing the number of decimal place but no success.
When I use the same format with this number 7.06402031 I get 7.06E+4
It appears the issue is related to Precision?
Any help would be appreciated
Gary