Hello,
I'm trying to get daily email containing my daily meeting in my local time zone (-5)
Can't figure out how to change timezone!
Hello @v-yamao-msft,
Thank you for the reply.
I had to modify couple things but yes thats was it:
Conversion :
convertTimeZone(item()?['Start'],'UTC','Eastern Standard Time','HH:mm') convertTimeZone(item()?['End'],'UTC','Eastern Standard Time','HH:mm')
HTML Table :
item()?['subject'] item()?['start time'] item()?['end time']
Thanks again,
Matt
Hi @matt4,
Please consider using function convertTimeZone to convert a timestamp from the source time zone to your local time zone.
I have made a simple test for your scenario, please check it for a reference.
In the Select action, use the following codes for start and end time:
Start
convertTimeZone(item()?['Start'],'UTC',' Pacific Standard Time’)
End
convertTimeZone(item()?['End'],'UTC',' Pacific Standard Time')
In the action Create HTML table, specify output from action Select and input the following code for each field:
Subject
item()?['subject']
Start
item()?['start']
End
item()?['end']
You could find a list of time zones at here:
https://docs.microsoft.com/en-us/previous-versions/windows/embedded/gg154758(v=winembedded.80)
Best regards,
Mabel
Michael E. Gernaey
566
Super User 2025 Season 1
David_MA
516
Super User 2025 Season 1
stampcoin
492