Canceled events in SharePoint calendar

Email-enabled calendars are great. Just add the calender into the recipients and your event appears in the SharePoint calendar. But what if you cancel the event?
The event will be deleted in Outlook, but not in SharePoint..


So in order to hide these events you need to add a calculated column to your list. Call it "Canceled" and set it's formula as

=IF(ISNUMBER(FIND("Canceled",Title)),"Yes","No")

Now edit the View. Add a filter to the Canceled column where the value is "No".
Now your done, you do not see the canceled events anymore.

Comments

Popular posts from this blog

How to support multiple languages in WPF