Your query code:
The error clearly indicates the reason: the type of the value ([Start Time]) isn't "good":
According to doc. function DateTimeZone.SwitchZone expects a value of type datetimezone but you provide a value of type datetime (your #"Changed Type" step):
So change your #"Changed Type" step with:
#"Changed Type" = Table.TransformColumnTypes(Source,
{{"Change Request", type text}, {"Start Time", type datetimezone}}
),
OR, if you want column [Start Time] to be of type datetime, then convert the value to type datetimezone as follow when adding your custom column:
#"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each
DateTimeZone.SwitchZone(
DateTimeZone.From([Start Time]),
0
)
)
Hope this all makes sense & helps