If you ever tried to create a filter using the From fields, you probably discovered it's weird and doesn't seem to work as expected. This is because there are two fields labeled "From" on the Filter dialog and each one is linked to a different From field.
When you create a View, Search Folder, or Advanced Find , you choose your criteria for the filter. The first tab, called Messages (when you are looking for email), has a From field. You can also choose the From field (or type "From" in the Field textbox) on the Advanced tab.
One would think both of these From fields are the same, however they are not. The From field on the first tab is the From email address field while the one on the Advanced tab uses the From display name field.
So which From field is used when you right-click on a message and choose Find All, From Sender? The one on the Advanced tab, which looks for messages based on display name only.
Bonus tip: If you want to view all mail sent from a domain, use the From field on the Messages tab and enter @domain.com or even just domain.
Published August 31, 2006. Last updated on September 6, 2017.
This solution works amazing!
https://blogs.technet.microsoft.com/ewan/2011/07/08/tip-o-the-week-44-making-outlook-show-only-email-from-external-senders/
My workaround: I filter on the 'Have replies sent to' field instead.
Thanks for your help with this. I used your content plus some vba to create a routine to add a search folders that checks email to/from/cc, subject, message, and a few others for a string. I only needed it for Inbox, but it could be modified. I have an outlook rule that places a copy of Sent items in my inbox, so I can track them. This search finds those as well. I don't know how it'll come out in this post, hope it's useful. -- Doug Sub CreateSearchFolderForKeyword() On Error GoTo Err_CreateSearchFolderForKeyword Dim strFilter As String strFilter = InputBox(Prompt:="Text… Read more »
I just figured out that there is a very simple non-SQL-query solution to selecting all emails received from and sent to all persons in one particular domain.
- While defining a new search folder select the search folder type "Nachrichten von oder an bestimmte Personen" (sorry, I only have a german version; it should be something like "Messages to or from a particular person")
- Enter the domain (eg. "@xxx.de") in the field "Von oder an->" (should be "From or to->") and
- Save the search folder
You need to use QueryBuilder for OR operations. We do have several tips for querybuilder... I'll set up some search folders and get the exact steps needed. It might also be possible to use the pre-defined search folder for to or from and select just the domain. I'll check on that too.