Here is the macro you gave me in the past that opens up a folder in the contact folders. What can we change so that in a field of the contact, there is a name of a person from another folder, so when I click on the macro it opens up the person of the field that has the name in that field. And the name of the field is "IntroPerson"
Public Sub Family_Folder2()
Dim fldContacts As outlook.MAPIFolder
Set fldContacts = Session.GetDefaultFolder(olFolderContacts).folders("Family")
fldContacts.Display
End Sub
Public Sub Family_Folder2()
Dim fldContacts As outlook.MAPIFolder
Set fldContacts = Session.GetDefaultFolder(olFolderContacts).folders("Family")
fldContacts.Display
End Sub