I'm trying to have my Excel macro insert some text at my cursor location in a already-opened Word Document.
This is what I have written. I'm aware that the ActiveDocument.Range has the Start and End arguments, but I cannot seem to be able to assign them the "current selection" as a value. Help? Thanks?
Sub InsertText()
Dim rngTemp As Word.Range
Set rngTemp = ActiveDocument.Range
With rngTemp
.InsertAfter "This is my sample text"
.Font.Name = "Tahoma"
.Font.Size = 11
.InsertParagraphAfter
End With
End Sub
The current selection is Selection
.
If, as you indicate, you need to use this in an Excel macro that's automating Word, then you need to use the Word.Application object you've declared and instantiated to qualify it. It would look something like this:
Dim wdApp as Word.Application
Set wdApp = GetObject(, "Word.Application")
wdApp.Selection.Text = "text at the current selection"
'Get a Range for the current selection
Dim rng as Word.Range
Set rng = wdApp.Selection.Range
rng.Text = "this text will replace the text in the current selection"
rng.Collapse wdCollapseEnd
rng.Text = " and this text will come after the current selection"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With