This formula gives the UTC time.
What I need:
I need to display in a label what exactly the time zone is?
CST
EST
GMT
PST
only: United States
Is there a way to revise the code below to display that suffix ?
"UTC"
& If(TimeZoneOffset() > 0, "-", "+")
& RoundDown(Abs(TimeZoneOffset()) / 60, 0)
& ":"
& If(Mod(Abs(TimeZoneOffset()), 60) < 10, "0", "")
& Mod(Abs(TimeZoneOffset()), 60)
Thanks
Dave