JonathanReez
Experimente esta macro, pode ajudar:
Sub RemoveRemindersinSpecificTimeInterval()
Dim objReminders As Outlook.Reminders
Dim objReminder As Outlook.Reminder
Dim dSpecificTime As Date
Dim objItem
Set objReminders = Outlook.Reminders
'The following line refers to 1 day since the current time
dSpecificTime = DateAdd("d", 1, Now)
For Each objReminder In objReminders
If objReminder.NextReminderDate <= Format(dSpecificTime, "ddddd h:nn AMPM") Then
Set objItem = objReminder.Item
objItem.ReminderSet = False
objItem.Save
End If
Next
End Sub
Sobre "dSpecificTime", você também pode substituir "Now" por uma data ou hora específica, como dSpecificTime = DateAdd ("m", 1, 10-4-2017) ou dSpecificTime = DateAdd ("h ", 2, 10-4-2017 8:30).