Outlook Meeting Location Macro

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am looking for a Macro to populate the Location field in the meeting
request with a phone number.

Thanks,
Aaron
 
Do you want to do this when the Appointment item is currently open? If so,
map a custom button to this macro:

Sub AddPhoneNumberToCurrentAppointmentItem()
If Not ActiveInspector Is Nothing Then
If ActiveInspector.CurrentItem.Class = olAppointment Then
ActiveInspector.CurrentItem.Location = "(555) 555-1234"
End If
End If
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top