Hello FME Community!
I'm having trouble transforming a datetime to incorporate a UTC offset. Using the DateTimeConverter, any time I try to use the Timezone shortcuts (%z or %Ez), it tells me "Output Formatting Error: format flag '%z' is not supported for input type 'datetime' in the Preview Data window. I've read the transformer specifics and date/time terminology, etc. I've also tried using a DateTimeCalculator to use @TimeZoneSet but can't figure out the syntax there either. I've attached two screenshots - the first is what I want to resolve the datetime format to (but had no UTC offset) and the second is when I use the Timezone UTC offset shortcut.
I'm sure I'm missing something in the syntax - can someone help?
Thanks!

You can then wrap that with the DateTimeFormat statement (or just follow up with a DateTimeConverter)
The inner TimeZoneSet adds the timezone based on your machine settings, so in my case a date of 12 Feb gets +00:00 whilst 12th June gets +1:00 (date_with_timezone). In your case, this would get -5:00 and -4:00. The outer TimeZoneSet then applies the offset to the time (utc_date). So in my case this subtracts an hour for the June datetime.