Reputation: 91641
I'm currently getting notes from the default folder using the code:
Set myNote = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderNotes)
How can I get notes from a different folder?
Upvotes: 1
Views: 205
Reputation: 8754
You have to walk the folder hierarchy, for example if your other Notes folder is one level below the Inbox, the code would be
Set myNote = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderInbox).Folders("My New Notes Folder Name")
Upvotes: 1