PDA

View Full Version : [SOLVED:] Filter Unread mails / arrange by date / from



hbelal
11-18-2018, 10:20 PM
Is there special shortcuts to filter unread mails / arrange mails by date / from (shortcut for each one) in Outlook 365? I couldn't find any shortcut for these actions.

hbelal
11-19-2018, 10:10 PM
If there is no built-in shortcut for such actions, won't VBA help?

skatonni
11-26-2018, 03:23 PM
Go to the Unread Mail folder.


Option Explicit

Private Sub Folder_EntryID()

' This puts the EntryID of the current folder into the immediate pane of the VBA editor
Debug.Print ActiveExplorer.CurrentFolder.entryID

End Sub

Sub GoTo_AnyFolder()

Dim myNameSpace As Namespace
Set myNameSpace = GetNamespace("MAPI")
Set ActiveExplorer.CurrentFolder = _
myNameSpace.GetFolderFromID("EntryID of any folder.")

End Sub

hbelal
11-27-2018, 02:57 AM
Go to the Unread Mail folder.

Thanks for the help. Appreciated.