Feb 22, 2017 10:13 AM
I’m using Airtable to keep records of events all over the world. The events have a date and time attribute, with time in different time zones. I can’t find a way to add the TZ information to the time, it seems that the only option is to set all times to GMT which is very unfriendly.
I know there is way to set the timezone for a field using formulas but that doesn’t help me as I need individual records to have different time zones.
is there a way to set the timezone info in the individual fields+records?
Feb 25, 2017 11:40 AM
It’s not ideal, but I guess the easiest DIY solution is to add another field (maybe linked to another table with a list of timezones) where you specify the timezone of that record.
Feb 27, 2017 03:15 PM
I thought about that but that doesn’t solve my use case, which requires exporting to table as iCal subscription for calendar applications.
I reverted to use GMT and ‘manually’ translate all the times of the events as there aren’t that many.
Aug 16, 2017 09:11 PM
A little late, but say you have your timestamp saved in a column called {Date}, you could use an extra column (named {Timezone} in the example formula below) to save the time zone information; see the list of accepted time zones here:
The SET_TIMEZONE function will allow you to set the timezone for the data from a date type field. This is written in the form "SET_TIMEZONE(datetime, 'timezone identifier')," in which the...
Enter them without the quotation marks, and then add a column with this formula:
DATETIME_FORMAT(SET_TIMEZONE({Date},{Timezone}),‘YYYY-MM-DD hh:mm’)
Here’s an example base