gmayor - I really appreciate the help and apologize for the delay. This is very close to what I want. I stripped it down to the parts I need:

Sub InsertConfCallInfo()
 Dim myItem As Object
 Set myItem = Application.CreateItem(olAppointmentItem)
 myItem.Location = "CALL: (866) 555-1212 / CODE: 9854101812"
 myItem.Display
End Sub
The only difference is that this macro creates an new appointment with the data I want in the location field.

Normally, however, I will already have an appointment open and want the text inserted there.

How would I accomplish this with a new appointment that is currently in focus?

~N