2 Methods to Count the Number of Recipients in an Outlook Email

At times, you may want to calculate the total number of the recipients in a specific email. But Outlook has no obvious “counting” function to support it. So this article will introduce 2 approaches to achieve it.

In some situations, for instance, when you’ve added a great amount of recipients to an email and find it difficult to manage them, you would like to obtain the total number of these recipients. But Outlook doesn’t have a native or default support to count. Thus you have to make some extra efforts to achieve it. Here we will tell you 2 methods.

Method 1: Count the Number of Recipients via Contact Group

  1. To start with, you should select all the recipients in “To”, “CC” and “BCC” fields and copy them to the blank space in message body.Copy All the Recipients to Message Body
  2. Then select all the recipients in the body and copy them as well.
  3. Next go to Outlook Contacts pane and hit “New Contact Group”. In the popup window, set the name as “Temp” and then click “Add Members” and select “From Address Book” from the drop down list.Create a New Contact Group
  4. Subsequently, paste the previously copied recipients in the “Member ->” field, like the following screenshot:Paste the Copied Contacts to Member Field
  5. After that, click “OK” button and back to the Contact Group. All the duplicates will be removed automatically. Now save it to local disk as “Text” file.
  6. Later open the Text file and remove the useless header, like the image below:Open the Text File and Remove the Useless Header
  7. Finally you can place the cursor at the last line. You will see the total number of the lines in the status bar. That is the total number of the recipients.Get the Number in Status Bar

Method 2: Count the Number of Recipients with Outlook VBA

  1. At first, press “Alt + F11” key buttons to access “Visual Basic” window.
  2. Then copy and paste the following VBA codes into a new module.
Sub CountRecipients()
    Dim obApp As Outlook.Application
    Dim olSel As Selection
    Dim olItem As MailItem
    Dim Recips As Recipients
    Dim strMsg As String
    Dim nRes As Integer
 
    Set obApp = Outlook.Application
 
    If TypeName(obApp.ActiveWindow) = "Inspector" Then
       Set olItem = obApp.ActiveInspector.CurrentItem
       Set Recips = olItem.Recipients
       strMsg = "The current message contains " & Recips.Count & " recipient(s)."
       nRes = MsgBox(strMsg, vbOKOnly + vbInformation, "Count Recipients")
    Else
       Set olItem = obApp.ActiveExplorer.Selection.Item(1)
       Set Recips = olItem.Recipients
       strMsg = "The selected message contains " & Recips.Count & " recipient(s)."
       nRes = MsgBox(strMsg, vbOKOnly + vbInformation, "Count Recipients")
    End If
 
    Set obApp = Nothing
    Set olSel = Nothing
    Set olItem = Nothing
    Set Recips = Nothing
End Sub

VBA Codes - Count Recipients

  1. After that, you can exit the “Visual Basic” window and add the new macro to Quick Access Toolbar of the main Outlook window and the message window.
  2. Eventually you can have a try:
  • When you select an email and hit the button in Quick Access Toolbar, you will receive a message like the following picture:Count the Recipients in a Selected Email
  • When you open an email and click the button, you will get an dialog box, shown as the image below:Count the Recipients in an Open Email

Note: This method will treat a contact group as one recipient and will not bypass the duplicate recipients.

Combat against Dangerous Macros

As we all know, email borne viruses have been one of the most common threats to data. So it is vitally important to configure Outlook only to enable the digitally signed macros, which can block viruses and malware. Plus, you had better keep a robust corrupted Outlook file repair utility, such as DataNumen Outlook Repair. It will come in handy when your Outlook suffers virus infection or malware attack.

Author Introduction:

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

3 responses to “2 Methods to Count the Number of Recipients in an Outlook Email”

  1. great publish, very informative. I wonder why the opposite experts of this sector don’t notice this. You must proceed your writing. I am sure, you have a great readers’ base already!

  2. Everyone loves it whenever people come together and share ideas. Great blog, stick with it!

Leave a Reply

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