View Single Post
  #2   Report Post  
galimi
 
Posts: n/a
Default

Adam,

The following Excel macro will copy all data from selected cells into a new
Word document

Sub moveToWord()
Set x = CreateObject("Word.Application")
x.Documents.Add
x.Visible = True

For Each cl In Selection

x.Selection.TypeText CStr(cl.Value)
x.Selection.TypeParagraph

Next
End Sub

http://HelpExcel.com

"Adam" wrote:

Does anyone know how to get cell data (from multiple) cells into a Word
Document (New or a Template) by the click of a form button??