
Updated 12/22/19
Important: This concept of using calculated columns will only work as a one-time trick. After adding the column, links will be correct. But because [ID] isn’t meant to be used in calculated columns, it removes itself from the formula if an item is edited after the column has been added. This method is only ideal for one-time uses, or for lists that are not expected to have content additions or changes. See this other post about how to get the same hyperlinks through workflow instead, for a more reliable method.
This project allows users a quick option to save something they see on a SharePoint calendar to their own calendar. Spend 5 minutes on these few instructions and your users will have a convenient way to get involved going forward.
Note that in modern calendar experiences, there’s a built-in “add to calendar” option for event items. This post is for classic experience calendars and calendar items/events.
Basically we’re going to add a calculated text column called iCal which will use the list’s GUID (easy to get, don’t worry) and the specific calendar item’s default ID number to generate a clickable .ics (iCal) file link. Let’s get started!
- Go to your calendar
- Click “Calendar” in the ribbon

- Click “List Settings”

- Copy everything in the address bar after “List=”. This should begin with %7B and %7D. This is your calendar’s GUID in hyperlink-friendly formatting.

- Create a column (Beneath columns section)

- Set it up as follows, pasting your GUID (for now) in the formula field. Don’t click OK yet.

- Paste the following in your formula field, moving your GUID to replace the placeholder here. Also put the correct Site URL (myexample.sharepoint.com/teams/site/subsite, for example)=CONCATENATE(“https://{Site or Subsite URL}/_vti_bin/owssvr.dll?CS=109&Cmd=Display&List={GUID}&CacheControl=1&ID=”,[ID],”&Using=event.ics”)
- Click OK
- Check the result. Open a calendar item. You should see an iCal item with the hyperlinked text.

- Upon clicking the URL, your browser will prompt you to open the file. Open it.
- Your email client will open the .ics file. Make any revisions to the calendar item you wish, then simply click save to add it to your calendar.

That’s it! Let me know if you run into any problems.
Leave a Reply