Jeanne Goodman
Member
- Outlook version
- Outlook 2010 64 bit
- Email Account
- Office 365 Exchange
Hi Diane,
I've been reading your articles for the past few days and I find you to be brilliant.
I have a problem in my company...
We have about 30 shared conference room calendars.
I need to be able to create a print out of all of the events on a particular day filtered by location.
From your articles it looks as though my best bet might be to copy all of the entries for the day from each calendar to a calendar designed for exporting to a CSV file. Then I can use a mail merge to print the results.
We use Office 365 Exchange Online as our server.
I can't seem to figure out how to specify the folder that I'm copying the events from especially since the "owner" of each of the shared calendars is the same.
Dim NS As Outlook.NameSpace
Dim objOwner As Outlook.Recipient
Set NS = Application.GetNamespace("MAPI")
Set objOwner = NS.CreateRecipient("maryc")
objOwner.Resolve
If objOwner.Resolved Then
'MsgBox objOwner.Name
Set newCalFolder = NS.GetSharedDefaultFolder(objOwner, olFolderCalendar)
End If
Can you advise?
Jeanne (I am not worthy) Goodman
I've been reading your articles for the past few days and I find you to be brilliant.
I have a problem in my company...
We have about 30 shared conference room calendars.
I need to be able to create a print out of all of the events on a particular day filtered by location.
From your articles it looks as though my best bet might be to copy all of the entries for the day from each calendar to a calendar designed for exporting to a CSV file. Then I can use a mail merge to print the results.
We use Office 365 Exchange Online as our server.
I can't seem to figure out how to specify the folder that I'm copying the events from especially since the "owner" of each of the shared calendars is the same.
Dim NS As Outlook.NameSpace
Dim objOwner As Outlook.Recipient
Set NS = Application.GetNamespace("MAPI")
Set objOwner = NS.CreateRecipient("maryc")
objOwner.Resolve
If objOwner.Resolved Then
'MsgBox objOwner.Name
Set newCalFolder = NS.GetSharedDefaultFolder(objOwner, olFolderCalendar)
End If
Can you advise?
Jeanne (I am not worthy) Goodman