tzOffset

HELLO,

what is this tzOffset for?

I saw in the link in any data.

And in the expresions too.

Thanks

You probably mean USERTZOFFSET(). It is somewhat inaccurate way of calculating the difference between the user’s local time and UTC time, based on the regional settings configured on the user’s device.

2 Likes

If you are, in fact, referring to the USERTZOFFET() function, it has no practical purpose that I can discern. To get the user’s actual UTC offset, use:

(UTCNOW() - NOW())

See also:

https://help.appsheet.com/en/articles/2966216-utcnow

4 Likes

Thanks @Joseph_Seddik and @Steve . Good to know this function.

1 Like