i have done in Word VBA successfully (basically, change the Style for a certain number of lines):
Code
Dim myRange As Range
Set myRange = ActiveDocument.Range(ActiveDocument.Range.Start, ActiveDocument.Range.Start)
myRange.Select
Selection.MoveDown Unit:=wdLine, Count:=4
Selection.MoveDown Unit:=wdLine, Count:=2, Extend:=wdExtend
Selection.Style = ActiveDocument.Styles("No Spacing")
and I would like to add to the following Excel VBA (opening Word and coping out text works well):
Code
Set WordApp = CreateObject("word.Application")
WordApp.Documents.Add
With WordApp.Selection
.typeParagraph
.typetext Text:=text2Prtint
.WholeStory
.Style = ("Normal")
'????
???
thank you.