Inserting a mail merge field into a table into a Microsoft Word document using V
wrdDoc.MailMerge.Fields.Add wrdSel.Range, "SupplierName"
However, when I try to put the same mail merge field into a table in a Microsoft Word document (code shown below), it just puts the number 59 into the cell of the table!!!
wrdDoc.Tables(1).Cell(2, 1).Range.Text = wrdDoc.MailMerge.Fields.Add(wrdSel.Range, "SupplierName")
Can someone help me so that it actually puts the mail merge field into the cell of the table rather than just inserting 59 there?
This is part of college project so I am in need of urgent help here!!!

