Skip to main content
deleted 29 characters in body
Source Link
Ramhound
  • 43.1k
  • 35
  • 107
  • 137

I found a useful tutorial for combining the inboxes of all email accounts at https://www.youtube.com/watch?v=V8m6HorjaNA

It cleverly operates by running a search for "folder:inbox received:today" and then clicking the dropdown to indicate search in all folders. One can then return to "recent searches" and click again the following day or create the following macro.

VBA code for combining all:

Sub UnifiedInbox ()
Dim myO1App As New Outlook.Application
txtSearch = “folder:inbox received:today”
MyO1App.ActiveExplorer.Search txtSearch, o1ScopeAllFolders
Set myO1App = Nothing
End Sub

HERE'S the problem with both. When you click "recent search" it defaults to current mailbox, requiring you to click the drop-down and change to "all mailboxes" and running the macro only searches in the current mailbox. I tried to all "mailboxes:all" to the txtSearch but that is obviously not the right language.

Can someone help? Thank you.

I found a useful tutorial for combining the inboxes of all email accounts at https://www.youtube.com/watch?v=V8m6HorjaNA

It cleverly operates by running a search for "folder:inbox received:today" and then clicking the dropdown to indicate search in all folders. One can then return to "recent searches" and click again the following day or create the following macro.

VBA code for combining all:

Sub UnifiedInbox ()
Dim myO1App As New Outlook.Application
txtSearch = “folder:inbox received:today”
MyO1App.ActiveExplorer.Search txtSearch, o1ScopeAllFolders
Set myO1App = Nothing
End Sub

HERE'S the problem with both. When you click "recent search" it defaults to current mailbox, requiring you to click the drop-down and change to "all mailboxes" and running the macro only searches in the current mailbox. I tried to all "mailboxes:all" to the txtSearch but that is obviously not the right language.

Can someone help? Thank you.

I found a useful tutorial for combining the inboxes of all email accounts at https://www.youtube.com/watch?v=V8m6HorjaNA

It cleverly operates by running a search for "folder:inbox received:today" and then clicking the dropdown to indicate search in all folders. One can then return to "recent searches" and click again the following day or create the following macro.

VBA code for combining all:

Sub UnifiedInbox ()
Dim myO1App As New Outlook.Application
txtSearch = “folder:inbox received:today”
MyO1App.ActiveExplorer.Search txtSearch, o1ScopeAllFolders
Set myO1App = Nothing
End Sub

HERE'S the problem with both. When you click "recent search" it defaults to current mailbox, requiring you to click the drop-down and change to "all mailboxes" and running the macro only searches in the current mailbox. I tried to all "mailboxes:all" to the txtSearch but that is obviously not the right language.

format
Source Link
harrymc
  • 1
  • 31
  • 579
  • 995

I found a useful tutorial for combining the inboxes of all email accounts at https://www.youtube.com/watch?v=V8m6HorjaNA

It cleverly operates by running a search for "folder:inbox received:today" and then clicking the dropdown to indicate search in all folders. One can then return to "recent searches" and click again the following day or create the following macro:.

Sub UnifiedInbox () Dim myO1App As New Outlook.Application txtSearch = “folder:inbox receivedVBA code for combining all:today” MyO1App.ActiveExplorer.Search txtSearch, o1ScopeAllFolders Set myO1App = Nothing End Sub

Sub UnifiedInbox ()
Dim myO1App As New Outlook.Application
txtSearch = “folder:inbox received:today”
MyO1App.ActiveExplorer.Search txtSearch, o1ScopeAllFolders
Set myO1App = Nothing
End Sub

HERE'S the problem with both. When you click "recent search" it defaults to current mailbox, requiring you to click the dropdowndrop-down and change to all"all mailboxes" and running the macro only searches in the current mailbox. I tried to all "mailboxes:all" to the txtSearch but that is obviously not the right language.

Can someone help? Thank you. Michael

VBA code for combining all

I found a useful tutorial for combining the inboxes of all email accounts at https://www.youtube.com/watch?v=V8m6HorjaNA

It cleverly operates by running a search for "folder:inbox received:today" and then clicking the dropdown to indicate search in all folders. One can then return to "recent searches" and click again the following day or create the following macro:

Sub UnifiedInbox () Dim myO1App As New Outlook.Application txtSearch = “folder:inbox received:today” MyO1App.ActiveExplorer.Search txtSearch, o1ScopeAllFolders Set myO1App = Nothing End Sub

HERE'S the problem with both. When you click "recent search" it defaults to current mailbox, requiring you to click the dropdown and change to all mailboxes" and running the macro only searches in the current mailbox. I tried to all "mailboxes:all" to the txtSearch but that is obviously not the right language.

Can someone help? Thank you. Michael

VBA code for combining all

I found a useful tutorial for combining the inboxes of all email accounts at https://www.youtube.com/watch?v=V8m6HorjaNA

It cleverly operates by running a search for "folder:inbox received:today" and then clicking the dropdown to indicate search in all folders. One can then return to "recent searches" and click again the following day or create the following macro.

VBA code for combining all:

Sub UnifiedInbox ()
Dim myO1App As New Outlook.Application
txtSearch = “folder:inbox received:today”
MyO1App.ActiveExplorer.Search txtSearch, o1ScopeAllFolders
Set myO1App = Nothing
End Sub

HERE'S the problem with both. When you click "recent search" it defaults to current mailbox, requiring you to click the drop-down and change to "all mailboxes" and running the macro only searches in the current mailbox. I tried to all "mailboxes:all" to the txtSearch but that is obviously not the right language.

Can someone help? Thank you.

Source Link

Merge all Outlook inboxes in search

I found a useful tutorial for combining the inboxes of all email accounts at https://www.youtube.com/watch?v=V8m6HorjaNA

It cleverly operates by running a search for "folder:inbox received:today" and then clicking the dropdown to indicate search in all folders. One can then return to "recent searches" and click again the following day or create the following macro:

Sub UnifiedInbox () Dim myO1App As New Outlook.Application txtSearch = “folder:inbox received:today” MyO1App.ActiveExplorer.Search txtSearch, o1ScopeAllFolders Set myO1App = Nothing End Sub

HERE'S the problem with both. When you click "recent search" it defaults to current mailbox, requiring you to click the dropdown and change to all mailboxes" and running the macro only searches in the current mailbox. I tried to all "mailboxes:all" to the txtSearch but that is obviously not the right language.

Can someone help? Thank you. Michael

VBA code for combining all