Outlook Macro - Search Folder

OzPanda

New Member
Joined
Mar 1, 2012
Messages
19
Hi guys

I'm in need of urgent help to write a macro to search for text and find the folder.

That's right not the email instance but the Outlook Folder on the side of the screen.

Imagine having hundreds of Folders on the side of outlook and inside the folders are a bunch of emails.

I need a macro that I can add a button. Click on the button a pop up pops up prompting me to type in some text.
Then the macro searches through the folders and opens up the folder.

Guys at work gave me tips:
"You get the Folders collection using this:

Application.GetNamespace(“MAPI”).GetDefaultFolder(olFolderInbox).Folders

Then you can use the properties GetFirst and GetNext to iterate. These return a Folder object.

One of the properties of a Folder object is Name. So you can use that to compare against the folder name that you are searching for.

https://msdn.microsoft.com/en-us/VBA/Outlook-VBA/articles/object-model-outlook-vba-reference"

However, I am still clueless as how to start this macro....

Any help would be greatly appreciated.
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes

Forum statistics

Threads
1,223,231
Messages
6,170,884
Members
452,364
Latest member
springate

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top