3 Easy Methods to Quickly Find All Outlook Contacts Added in a Specific Date Range

If you need to search the contacts by date added, such as finding contacts added in a specific date range, you can make use of the 3 means introduced in this article.

Perhaps you’ve known how to search contacts by full names, companies and even color categories, etc. Yet, at times, you don’t remember such contact information clearly. You can only ensure the date range when the contact added to Outlook. In this situation, you need to search contacts by the date added. Here we’ll show you 3 simple approaches to get it.Quickly Find All Outlook Contacts Added in a Specific Date Range

Method 1: Find by “Instant Search”

  1. First off, after opening a Contact folder, click in the search box.
  2. Then, click the “All Contact Items” button on “Search” tab.Search All Contact Items
  3. After that, input the specific date range into the search box, such as “Created: >11/1/2017 <11/28/2017”.
  4. When the search completes, all the contacts added in this date range will be listed out.Found Contacts by Instant Search

Method 2: Find by “Advanced Find”

  1. For a start, enable “Query Builder” for Outlook, about which you can refer to the Step 1 in the article – “2 Steps to Create an Outlook Search Folder with “OR” instead of “AND” Criteria for Multiple Conditions
  2. Then, on the “Search” tab, click “Search Tools” > “Advanced Find”.Launch Advanced Find
  3. Next, in the popup dialog box, switch to “Query Builder” tab.
  4. Subsequently, add a criterion of “Created on or before a specific date”, and hit “Add to List” button.Add a criterion of "Created on or before a specific date"
  5. After that, add another – “Created on or after a specific date”.Add a criterion of "Created on or after a specific date"
  6. After adding the two criteria, ensure “And” is selected in the “Logical Group” field."Add" in Logical Group
  7. Finally, click the “Find Now” button on the right column.
  8. At once, all the contacts added in this date range will display in the following list.Found Contacts by Advanced Find

Method 3: Find via Outlook VBA

  1. To start with, in Outlook, press “Alt + F11” to access VBA editor.
  2. Next, copy the VBA code below into an unused module.
Sub FindAllContactsCreatedInSpecificDateRange()
    Dim objContactsFolder As Outlook.Folder
    Dim dStart, dEnd As Date
    Dim strFilter As String
    Dim objSearchExplorer As Outlook.Explorer
 
    Set objContactsFolder = Application.Session.GetDefaultFolder(olFolderContacts)
    Set objSearchExplorer = Application.Explorers.Add(objContactsFolder)
 
    dStart = InputBox("Enter the start date.", , "11/1/2017")
    dEnd = InputBox("Enter the start date.", , "11/28/2017")
 
    strFilter = "Created: > " & dStart & " AND " & "Created: < " & dEnd & ""
 
    With objSearchExplorer
         .Search strFilter, olSearchScopeAllFolders
         .ShowPane olFolderList, False
         .ShowPane olNavigationPane, False
         .ShowPane olOutlookBar, False
         .ShowPane olToDoBar, False
         .Display
    End With
End Sub

VBA Code - Find All Contacts Added in a Specific Date Range

  1. At present, press “F5” to trigger this macro.
  2. You’d be required to input the start and end date of the date range.Input Start & End Date
  3. When macro completes, a new Outlook window will show up, which is listing all of the contacts created in the specific date range.Found Contacts via VBA

Keep Your Outlook File in Small Size

Outlook data file will become more vulnerable with its size becoming larger and larger. In order to avoid Outlook corruption or data loss, you’d better keep your Outlook file in small size. For instance, you should archive useless emails, delete needless attachments from the PST file. Also, you can utilize a reliable tool to split the file, such as DataNumen Outlook Repair.

Author Introduction:

Shirley Zhang is a data recovery expert in DataNumen, Inc., which is the world leader in data recovery technologies, including repair mdf and outlook repair software products. For more information visit www.datanumen.com

One response to “3 Easy Methods to Quickly Find All Outlook Contacts Added in a Specific Date Range”

Leave a Reply

Your email address will not be published. Required fields are marked *