I tried to run the code from this question: Exporting Outlook calendar data to Excel file - Shared calendars and VBA
My code modification.
Set olNS = olApp.GetNamespace("MAPI")
Set myCalItems = olNS.CreateRecipient("theOtherUser")
myCalItems.Resolve
myCalItems.GetSharedDefaultFolder
I got error 13 Type mismatch. I've testing different combinations without result.
I tested this example too: MSDN link
This info is useful but not enough: http://www.snb-vba.eu/
I need to export shared MS Outlook's calendars (with Exchange server) to MS Excel.
These calendars are shared to me and other people.
I run MS Office 2010 version.