How Can I Embed/link A Word Document Into An Excel Worksheet?

5

5 Answers

Anonymous Profile
Anonymous answered
Insert -> Object... ->

For a new word document:
In the "Create New" tab select "Microsoft Word Document"

For an existing word document:
In the "Create From File" tab click "Browse" then select the document
______
James
Anonymous Profile
Anonymous answered
Does anyone know how to embed (not link) a .doc , .pdf file into a single cell so that if the .xml was sent to someone else to use, the embedded file would be accessible for them as well ie) they would not have to have the .doc , .pdf file stored on their computer in the folder that ie) a hyperlink references.
Anonymous Profile
Anonymous answered
Dim objExcel As Excel.Application
'Dim objWord As Word.Application
Dim xls As Excel.Sheets

Set objExcel = New Excel.Application
'Set wrdDoc = wrdApp.Documents.Open(TextBox1.Text)
'Set doc = objExcel.Documents.Open(TextBox1.Text, Visible:=True)
Set xls = objExcel.Sheets.Add(TextBox1.Text)
xls.PrintOut
'xls.Save ("test.xls")

'xls.Close False
objExcel.Quit

Set xls = Nothing
Set objExcel = Nothing
Alex Krenvalk Profile
Alex Krenvalk answered
I have an interest friend, who told me unusual story, about his problem. To tell the truth in some days I was in a nice mess and started searching the solution. Fortunately I quickly discovered the determination, which I hope will aid in this problem as well - excel
  file repair
.
Suhail Ajmal Profile
Suhail Ajmal answered
It is an easy process. Put the cursor on the cell where you want to put the link. Go to insert>hyperlink. A window will appear, find the word file on your hard disk and click on OK. A link will be created in blue in the excel file.

Answer Question

Anonymous