@Hsnowbee ,
You could add on your OnStart property to set user's TimeZoneOffset in a new column in your User List.
Patch(
UserList,
LookUp(
UserList,
Name = User().FullName
),
{
Time: "UTC" & If(
TimeZoneOffset() > 0,
"-",
"+"
) & RoundDown(
Abs(TimeZoneOffset()) / 60,
0
) & ":" & If(
Mod(
Abs(TimeZoneOffset()),
60
) < 10,
"0",
""
) & Mod(
Abs(TimeZoneOffset()),
60
)
}
)
To get the Location, you could use the Location function, but this would only give you the Longitude and Latitude.
You could then use the Map if you have a premium license to display the user's location.
_____________________________________________________________________________________
Please give a thumbs up if I resolved your issue! Please click Accept as Solution to close the topic!