ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Can Excel Execute a Word Document and Insert Data? (https://www.excelbanter.com/excel-discussion-misc-queries/141492-can-excel-execute-word-document-insert-data.html)

Shazam

Can Excel Execute a Word Document and Insert Data?
 
Is there a way to click on a part number in a list in Excel that will open a
Word document that contains a form letter with the part number inserted that
was originally selected in the Excel list? I thought of hyperlinks from a
mail merge, but the list contains about 8000 part numbers.

Trevor Shuttleworth

Can Excel Execute a Word Document and Insert Data?
 
You could use a Selection Change event to pick up the contents of a newly
selected cell and then execute some code to open the word document and
insert the value

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
MsgBox Target.Address & " = " & Target.Value
End Sub

You could restrict the event to a single column or even a range ... or you
could manually execute a macro having selected the data.

I think the easiest way is to have bookmarks in the word document where you
want to add data.

Regards

Trevor


"Shazam" wrote in message
...
Is there a way to click on a part number in a list in Excel that will open
a
Word document that contains a form letter with the part number inserted
that
was originally selected in the Excel list? I thought of hyperlinks from a
mail merge, but the list contains about 8000 part numbers.





All times are GMT +1. The time now is 07:57 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com