3 Quick Methods to Count All Flagged Items in Your Outlook

Outlook allows you to flag items for follow up, such as flagging emails, contacts and so on. In this scenario, sometimes you may want to count the flagged items. Here we will share 3 approaches with you.

Perhaps you’ve flagged a great number of items for follow up in your Outlook. For instance, you can flag a contact in that you plan to call this contact later. In face of so many flagged items, you may hope to get a count of them. Thereinafter, we will introduce you 3 means.Count All Flagged Items in Your Outlook

Method 1: Count via Search Folder

If you simply want to count the flagged emails, you can make use of search folder. Here are the detailed steps.

  1. To start with, in the mail navigation pane, right click on the “Search Folders”.
  2. Then, from its context menu, select “New Search Folder”.New Search Folder
  3. In the popup dialog box, select “Mail flagged for follow up” and click “OK”.Mail flagged for follow up
  4. Finally, you will get a total number of flagged emails in the search folder, like the following screenshot.Count of Flagged Emails

Method 2: Count in the To-Do List

If you’ve flagged not only emails but also contacts, contact groups and so on, you may want to get a total count of all these flagged items. In this situation, you can use the following way.

  1. Firstly, switch to Tasks navigation pane by “Ctrl + 4”.
  2. Then, access the “To-Do List”, where you will see all the flagged items, shown as the image below:Access To-Do List
  3. Next, select all these items and press “Enter” key button, trying to open them in batches.Try to Open All Flagged Items
  4. Subsequently, you will get a warning about opening too many items, like the following picture. In the warning, there is a total count of the flagged items.Warning Containing Count of Flagged Items

Method 3: Count with Outlook VBA

Maybe not only do you want to get a total count of all flagged items, but also you wish to get the counts of separate types of flagged items. Here is a solution in this respect.

  1. For a start, access Outlook VBA editor with reference to the post “How to Run VBA Code in Your Outlook“.
  2. Then copy the VBA code below into a module or project.
Dim lSeparateCount, lMailCount, lContactCount, lTaskCount As Long

Sub CountFlaggedItems()
    Dim objStore As Outlook.Store
    Dim lTotalCount As Long
    Dim strMsg As String

    lTotalCount = 0
    lMailCount = 0
    lContactCount = 0
    lTaskCount = 0
 
    For Each objStore In Application.Session.Stores
        For Each objFolder In objStore.GetRootFolder.Folders
            Call ProcessFolders(objFolder, lTotalCount)
        Next
    Next
 
    strMsg = lTotalCount & " items have been flagged, as follows: " & vbCr & vbCr & "Emails: " & lMailCount & vbCr & "Contacts: " & lContactCount & vbCr & "Tasks: " & lTaskCount
    MsgBox strMsg, vbInformation + vbOKOnly
End Sub

Sub ProcessFolders(ByVal objCurrentFolder As Outlook.Folder, ByRef lCount As Long)
    Dim objSubfolder As Outlook.Folder
 
    Select Case objCurrentFolder.DefaultItemType
       Case olMailItem
            Call Count(objCurrentFolder, lCount)
            lMailCount = lMailCount + lSeparateCount
       Case olContactItem
            Call Count(objCurrentFolder, lCount)
            lContactCount = lContactCount + lSeparateCount
       Case olTaskItem
            Call Count(objCurrentFolder, lCount)
            lTaskCount = lTaskCount + lSeparateCount
            lCount = lCount + objCurrentFolder.Items.Count
    End Select
 
    If objCurrentFolder.Folders.Count > 0 Then
       For Each objSubfolder In objCurrentFolder.Folders
           Call ProcessFolders(objSubfolder, lCount)
       Next
    End If
End Sub

Sub Count(objCurfolder As Outlook.Folder, lCurCount As Long)
    Dim objItem As Object
 
    lSeparateCount = 0
    For Each objItem In objCurfolder.Items
        Select Case objItem.Class
           Case olMail, olPost, olContact, olDistList, olSharing
                If objItem.IsMarkedAsTask = True Then
                   lSeparateCount = lSeparateCount + 1
                   lCurCount = lCurCount + 1
                End If
           Case olTask
                lSeparateCount = lSeparateCount + 1
        End Select
    Next
End Sub

VBA Code - Count All Flagged Items

  1. Finally, click into the “CountFlaggedItems” subroutine and press “F5” button.
  2. When the macro completes, you’ll get a message, prompting the total count of all flagged items, like the picture below.Message with Count of Flagged Items

Dispose of Annoying Outlook Troubles

In Outlook, Outlook issues can occur now and then. Thus, you had better get hold of a tip-top and trustworthy Outlook fix utility, like DataNumen Outlook Repair. It can scan your Outlook file intelligently and repair the file errors within minutes.

Author Introduction:

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

2 responses to “3 Quick Methods to Count All Flagged Items in Your Outlook”

  1. שלום,

    למעשה חיפשתי פתרון של סימון הודעות מיילים, לא משנה מי אנשי הקשר – מסמן כמה מיילים, לא חשוב באם נקראו או לא נקראו, לוחץ אנטר וזה מאפשר לי דרך חלונית שנפתחת את ריבוי מספר הפריטים.
    בכל פעם שאני מבצע זאת, פעם זה עובד ופעם לא עובד> פותח לי את כל המיילים אחד אחרי השני וזו לא הכוונה שלי שכך ייפתח.
    מה ניתן לעשות על מנת שתהיה אופציה קבועה ?

  2. Hi! I implemented the module and the response was greater than the red flagged emails I have. I manually counted, then web outlook “filter flagged – select all” and confirmed the number is 212 flagged emails. But the macro response was 9,122 emails. I’m thinking it picked up all Category Tagged, Green Checked, and Red Flagged emails?

Leave a Reply

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