I am new to writing code and am not sure how to go from the default inbox which is mine to a shared email inbox.
Set Folder = OutlookNamespace.GetDefaultFolder(olFolderInbox).Folders("Appointments")
I am new to writing code and am not sure how to go from the default inbox which is mine to a shared email inbox.
Set Folder = OutlookNamespace.GetDefaultFolder(olFolderInbox).Folders("Appointments")
Try : getshareddefaultfolder
Dim OutNS As Outlook.Namespace
Set Folder = OutNS.GetSharedDefaultFolder(objOwner, olFolderInbox)