gangstanthony
New Member
- Outlook version
- Outlook 2016 64 bit
- Email Account
- Exchange Server 2010
i have a folder path like this:
\subfolder1\12345
i have converted this to an array by splitting on "\" and removing the blank entries.
what i want to to is get it to be usable in vba as a folder path like this:
any help would be greatly appreciated!
\subfolder1\12345
i have converted this to an array by splitting on "\" and removing the blank entries.
what i want to to is get it to be usable in vba as a folder path like this:
Code:
Set DestFolder = Session.GetDefaultFolder(olFolderInbox).Folders("subfolder").Folders("12345")
any help would be greatly appreciated!