Thread: Help Please
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Please Help[_5_] Please Help[_5_] is offline
external usenet poster
 
Posts: 1
Default Help Please

Attached below is part of the code when you click a
command button. This puts the values of the cells into a
word document. My question is I want these values on
different lines but by default it places them all on the
same line. I hope this makes sense.. Can some one help?
Thanks in advance.

Dim mywdRange As Word.Range
Set mywdRange = myDoc.Words(1)
With mywdRange
.Text = Range("G6") & _
Range("G7") & _
Range("G8")
End With