Hi PowerApps community
I have some problems how PowerApps interpretes fraction numbers based on language on the iPhone device
Situation: I have simple App, that should show different colors based on definition in my TextInput
So - in valGreen.Default I put 0.985 - as seen on the pictures below
Later, on Fill I have the following formula:
If(Value(txtDaily.Text)>=Value(valGreen.Text),Green,If(Value(txtDaily.Text)>=Value(valYellow.Text),Yellow,Red))
Everything works fine on iPhone with English settings
But i noticed, that if the settings are Danish, it doesn't work as expected. Analysing that, I realised that in Danish 0.985 is not fractional number, because in Danish decimal sign is comma, not dot
In fact if I run the App and change my TextInput from 0.985 to 0,985 (note the comma) - it start showing correctly colors
My question is - how to put the default correct fraction number in my TextInput, so it works on both English/Danish devices?

Regards,
Yakimo