Add event to Google Calendar not from iCal Files, but from URLs

AppSheet is natively support to generate the iCal files out of BOT jobs to sent the ical file to recipient to add the event to the calendar. But it is bit painful for Google Workspace | Calendar users as ICal file is not easy to add event to Google Calndar (yes we have option to add event out of iCal file though)

To make the life for Google Workspace user easiers, we are recommending to make action to go to URL to add event to Google Calendar.

To add event, just construct the URL (within VC) based on the column in the same row.

Assuming we have starting dateTime as well as end dateTime coumn alonng with detail | title of eventm who would be invited and so on.

This is basic syntax (AppSheet Expression) to generate URL to add event.

We can employ the expression within VC, but OFC we can use within URL action.

Out of Start | End dateTime field, we need to convert the value to DateText, StartTimeTex, EndTimeText value to consume.

[DateOfEvent] Date time field also need to be converted to Text value as well.

[DateText] โ€” Text([DateOfEvent],โ€œYYYYMMDDโ€)
[StartTimeText] โ€“ Text([StartDateTime],โ€œHHMMSSโ€)
[EndTimeText] โ€“ Text([EndtDateTime],โ€œHHMMSSโ€)

For invited member, you create list of emais to be invited, as enumlist and pust to [inviatedMembers]

hyperlink(
Concatenate(
"https://www.google.com/calendar/render?action=TEMPLATE&text=",
[EventTitle],
"&dates=",
[DateText],
"T",
[StartTimeText],
"/",
[DateText],
"T",
[EndTimeText],
"&add=",
[InvitedMembers]
),
"Add to Google Calendar"
)

Once the action is fired, the add event to Google Calendar is opened in browser. The user would just hit the same. This is better process rather than to download iCal ratherto local and open and save.

@Takuya_Miyai
@MultiTech_Visions
@Aleksi
@Steve
@Suvrutt_Gurjar

7 2 307
2 REPLIES 2

There are other params we are able to manipulate, but we are currently studying that now.

Top Labels in this Space