Aug 25, 2021 01:00 AM
Hello. I am trying to sync Airtable with Google Calendar. In the form of “Add” the URL of Airtable’s “Calendar view” to Google Calendar. However, there was one minor problem. Airtable’s “Date” field now selects Date format and Time format, no more options.
However, it would be better if there is a “predefined” time slot for Time when actually entering Airtable’s Date. (For example, 10:00/14:00/19:00 or 10:00-13:00/14:00-17:00/19:00-22:00) Creating a “predefined” time slot like this is " Single Select Field", but this field cannot be used in Calendar View.
Of course, I know that it is possible by using an automation tool such as Zapier or Integromat, but as much as possible, I try to subscribe the URL of Airtable’s “Calendar” as it is to Google Calendar. In short, is there any way to use predefined time slots in “Date Field”? Or is there any way to use “non-date” field in “Calendar view”?
Solved! Go to Solution.
Aug 25, 2021 04:29 AM
Neither nor. However, you can achieve the same effect by a slightly roundabout way:
DATETIME_PARSE(DATESTR(Date) & " " & Timeslot)
. Its output will be a date that can be formatted for display the usual way and, significantly, can be used to inform a calendar view.Aug 25, 2021 04:29 AM
Neither nor. However, you can achieve the same effect by a slightly roundabout way:
DATETIME_PARSE(DATESTR(Date) & " " & Timeslot)
. Its output will be a date that can be formatted for display the usual way and, significantly, can be used to inform a calendar view.