Insert a target cell value from excel to a word document bookmark

carlrubber

New Member
Joined
Oct 15, 2016
Messages
48
Hi all,

I am new in vba and now i would insert a target cell value in excel to a word document bookmark by following code,
the error is come from ws.Range(Target.Row, Target.Column).Value

VBA Code:
Sub InsertAfterBookmark()


Dim objWord As Object

Dim ws As Worksheet

Dim I As Long

Set ws = ThisWorkbook.ActiveSheet

Set objWord = CreateObject("Word.Application")

objWord.Visible = True

objWord.Documents.Open ("C:\Desktop\New folder\_20220808.doc")

With objWord.ActiveDocument

.Bookmarks("MR").Range.InsertAfter ws.Range(Target.Row, Target.Column).Value

End With

Set objWord = Nothing

End Sub

anyone could help please.
Thank you
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
There is no "Target" value. It's not a worksheet change sub. U will also need to save and close the document then Quit Word before setting the "objword" to nothing. HTH, Dave
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,857
Members
449,051
Latest member
excelquestion515

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top