How to Quickly Get a List of All the Existing Reminders in Your Outlook

If you would like to quickly check or print a list of all the current existing reminders in your Outlook, no matter task reminder or appointment reminder, you can use Outlook VBA. This article will introduce you how to get it elaborately.

In general, it is pretty simple to view all the existing reminders in a specific folder, such as all the reminders in a specific task folder or a certain calendar. However, when you wish to check all the reminders in all Outlook folders simultaneously, if you simply recur to Outlook native features, it is impossible. Therefore, you have to search other approaches, such as 3rd party add-ins or VBA codes. Here we will guide you how to quickly all the current reminders with Outlook VBA.

Quickly Get a List of All the Existing Reminders

  1. In the first place, start Outlook application.
  2. Then you should switch to the “Developer” tab. If you have not found it, then you need to first enable it. Go to “File” > “Options” > “Customize Ribbon”.
  3. Subsequently, you ought to click on the “Visual Basic” button under this tab.
  4. After that, you will get access to the Outlook VBA editor. At this time, you can open a module that is not in use or insert a new module by selecting “Insert” > “Module”.
  5. Next you should copy and paste the following VBA codes into the module.
Sub GetAllExistingReminders()
    Dim objReminders As Reminders
    Dim objReminder As Reminder
    Dim strReminderDetails As String
    Dim objNewNote As NoteItem
 
    Set objReminders = Outlook.Application.Reminders

   'Check if any reminders exist
    If objReminders.Count = 0 Then
       MsgBox "There is no existing reminder."
    Else
       For Each objReminder In objReminders
           strReminderDetails = strReminderDetails & objReminder.Caption & " (" & TypeName(objReminder.Item) & ") ---- " & objReminder.NextReminderDate & vbCrLf
       Next objReminder
       'Display report in a new note item
       Set objNewNote = Outlook.Application.CreateItem(olNoteItem)
       With objNewNote
            .Body = "All Existing Reminders:" & vbCrLf & vbCrLf & strReminderDetails
            .Categories = "Reminder"
            .Display
            'To print out all these reminders, add ".PrintOut" line.
       End With
    End If
End Sub

VBA Codes - Get a List of All the Existing Reminders in Your Outlook

  1. Later you can click on the “Run” icon in the toolbar to start the new macro.Run the Current Macro
  2. Eventually, a new Outlook Note item will show up. All the existing reminders in your Outlook will be included in this Note, like the following screenshot:Get a Note Containing All Existing Reminders

Note: If you’ve added the “.PrintOut” line in the VBA codes, then Outlook will print the note item automatically. It will look like the image below:Print Out the Note Item

Be Careful of Malicious Macros

Macro is indeed helpful and useful as it can help us to accomplish the tasks that seem impossible. However, you should keep cautious of the macros from others, in that they may be malicious. It means that the macros from others may contain viruses, which can render PST corruption in a flash. Assuming that your PST file gets infected, Scanpst.exe, the free inbox tool, won’t make any effects. At that time, you have no choice but to use a more powerful tool, 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 sql fix and outlook repair software products. For more information visit www.datanumen.com

Leave a Reply

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