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

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
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,215,473
Messages
6,125,018
Members
449,203
Latest member
tungnmqn90

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