I am using the following code which works when copying named ranges in Excel that consist of only 1 cell
Is there a way of doing this but when each range can potentially consist of more than 1 cell.
Also, when dropping into the Word document I woudl like it to show as columnar as it appears in the Excel workbook.
Thanks
Code:
For Each xlName In wb.Names
If docWord.Bookmarks.Exists(xlName.Name) Then
docWord.Bookmarks(xlName.Name).Range.Text = Range(xlName.Name).Value
Else
End If
Next xlName
Also, when dropping into the Word document I woudl like it to show as columnar as it appears in the Excel workbook.
Thanks