I have a SharePoint classic calendar and a SharePoint list. When an item is modified on the classic calendar, Power Automate updates the date and time on the list. The problem I am having here is PA is receiving the date/time in UTC format and when PA sends it to the list, the date/time is being converted from UTC to local time. For example, event start date on the calendar is an all day event and the date/time is 3/1/2026 0:00. PA receives this date/time as '2026-03-01T00:00:00Z' and SharePoint converts it to 2/28/2026 18:00.
I tried to convert time zone from local time to UTC and it did not work.
convertTimeZone('2026-03-01T00:00:00Z', 'Central Standard Time', 'UTC')
Output: 2026-03-01T00:00:00.0000000Z
How do I convert the time PA receives from the calendar so that the time on the list is the same as the time on calendar?