Get FirstName based on Alias Outlook search in vba
问题 I able to do reverse (Get Alias based on Name) by following code: Is it possible to get Name based on Alias ? (I would like to run it in excel spreadsheet) Public Sub GetUsers() Dim olApp As Outlook.Application Set olApp = CreateObject("Outlook.Application") Dim olNameSpace As Outlook.Namespace Set olNameSpace = olApp.GetNamespace("MAPI") Dim olAddrList As Outlook.AddressList Set olAddrList = olNameSpace.AddressLists("Global Address List") Dim oGal As Outlook.AddressEntries Set oGal =