Quick Question about calling a combo box

R

Ray

I have a form setup to mail merge into word. Everything works except for a
combo box named "Letter Text". It returns the primary key field instead of
the field i want which is in the 3rd column. Can anyone tell me what to add
to this to get the 3rd column to show?

WordObj.Selection.Goto what:=wdGoToBookmark, Name:="Letter_Text"
WordObj.Selection.TypeText [(Letter Text]


Thanks in advance!!!!
 
P

Pendragon

Try [Letter Text].[column(2)] as your reference. Remember to use 2 for the
third column since numbering starts at zero.
 
Top