You can easily return the timezone offset but not easy to convert to actual “name” of the timezone, especially with the daylight savings all over the place and any country doing whatever it wants…
q: (“GMT” & (local time zone as string))
A: GMT-0500
T: 0.530 ms
If you insist on doing it then you will need to write your own code here is pseudo-example:
(if (daylight savings) then (if (it = “GMT-0500”) then (“Central Daylight Time”) else if…) else (if (it = “GMT-0500”) then (“Eastern Standard Time”) else if…)) of (“GMT” & (local time zone as string))
Can’t give you exact code cause it’s not easy at all to determine if daylight savings is on (as I mentioned, that is political thing, not mathematical/reliable) and even harder on all different OS platforms…