I want calculate time differences between date times in different timezones in Google Sheets.
If I format two fields as "datetime" and another as "duration", I can successfully calculate the difference within the same timezone using the difference operator.
Example: A1= 1/10/2016 10:10:00
, B2 = 13/11/2016 15:35:00
C2 = =B2-B1
.
However when I add the time zone to a date time, e.g. A1= 1/10/2016 10:10:00 GMT+1:00:00
, C2 displays #VALUE
.
I know I can calculate the time zone difference myself and subtract it from the duration, but is there any way of automating that by specifiying the time zone directly in the datetime fields?