I'm trying to set appointments using data from a spreadsheet. The appointment start time is formatted like "2/27/2025 13:00". The 'Time zone' field is set to Central Time.
No matter what expression Copilot suggests, the appointment is always set for 6:00 am instead of 1:00 pm. Here are two examples I would expect to yield different start times but they both set the appointment to 6:00 am:
formatDateTime(convertTimeZone(items('Apply_to_each')?['Appointment'], 'UTC', 'Central Standard Time'), 'yyyy-MM-ddTHH:mm:ssZ')
formatDateTime(convertTimeZone(items('Apply_to_each')?['Appointment'], 'Central Standard Time', 'UTC'), 'yyyy-MM-ddTHH:mm:ssZ')
How do I ensure that "13:00" is added to my calendar at 1:00 pm?