Hi @jvdl ,
While patching the record you can use the below formula for all the date controls. It will store the value in UTC format.
DateAdd(Now(),TimeZoneOffset(), Minutes);
And while displaying any date time field in your Powerapps please use the below format in the DateDefault property. This you show the date stored in the UTC format in user local timezone.
DateAdd(Now(),-TimeZoneOffset(), Minutes);
This way for all the Logic aoo operations can be performed in UTC format and the date time field will have uniform value in UTC even if multiple users of different time zone will submit the data.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.