Using New Outlook on Windows for professional communication and productivity
Hi
I am using Windows 10 and office 365.
I managed to get a unified Inbox by creating a macro that does it.
below is the code that worked for me.
Process
from the Outlook screen
press Alt+F11 to launch VBA
selected "ThisOutlooksession"
then entered the below. Only drawback is you have to enable macros
Sub UnifiedInbox()
Dim xExplorer As Outlook.Explorer
Dim xSearch As String
On Error Resume Next
xSearch = "folderpath:Inbox"
Set xExplorer = Outlook.Application.ActiveExplorer
xExplorer.Search xSearch, olSearchScopeAllFolders
Set xApp = Nothing
End Sub