Hey appsheet fam - I’m importing data from a 3rd party that formats datetime thusly:
2022-01-05T20:55:01Z
Appsheet has no trouble reading this, but the dates and times passed in are UTC. When attempting to use USERTZOFFSET() to adjust the datetime, my function is subtracting 300 (my 5 hour offset) DAYS instead of minutes from the datetime.
I can get this working for TIME() values, but that’s not very helpful since certain entries will cross the date line.
How can USERTZOFFSET() be used to effect the date and time?
Thanks - while hardcoding the offset does work, it’s not as useful since we have a team of users distributed through many timezones. (Wouldn’t this break for several months a year during DST as well?)