How to View Multiple Inboxes at Once in Outlook 365

Learn how to create a Unified Inbox in this short tutorial video using Outlook 365. Have multiple email accounts each with their own inbox? Rather than constantly checking each inbox separately, merge them all together so you only need to look at one inbox. I show three different techniques, including using a search folder, writing a macro, and lastly setting up rules. Unfortunately, Outlook on the PC does not support a unified inbox out of the box. However, using these steps, you can easily create a one inbox view that aggregates all of your inboxes together.

For the Macro technique, use the following code:

~~~~~~~Create a unified inbox~~~~~~~
Sub UnifiedInbox()
Dim myOlApp As New Outlook.Application
txtSearch = “folder:Inbox received: (this week)”
myOlApp.ActiveExplorer.Search txtSearch, olSearchScopeAllFolders
Set myOlApp = Nothing
End Sub
~~~~~~~~~~~~~~
~~~~~~~Create a Unified Sent Folder~~~~~~~
Sub UnifiedSentbox()
Dim myOlApp As New Outlook.Application
txtSearch = “folder: (Sent Mail) sent: (this week)”
myOlApp.ActiveExplorer.Search txtSearch, olSearchScopeAllFolders
Set myOlApp = Nothing
End Sub ~~~~~~~~~~~~~~

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s