Hi,
I am currently also trying to get rid of my decimals, but seem to be stuck.
I have a calculated value in minutes as a single line of text, based on two date/time entries.
=GANZZAHL(([Geplanter Einsatztermin Ende]-[Geplanter Einsatztermin])*1440)
The value in this example is 60 minutes, see first attachment, which looks as expected in the Sharepoint item.
Now when I pull this single line of text into my Powerapp, I get the "hostile" decimals (second screenshot) 🙂
I tried this:
Text(ThisItem.Geplante_x0020_Dauer*1; "[$-de-DE]#.0")
and
Text(Value(ThisItem.Geplante_x0020_Dauer); "[$-de-DE]#.0")
But end up only getting more dots in between all the 0s, but no matter what I try the 0 remain.
With this code:
Text(Value(ThisItem.Geplante_x0020_Dauer); "[$-de-DE]#")
I get rid of the dot after the "60", but also the 0s remain 😞
Any ideas?
Thanks a lot in advance!