A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Links and Linking
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Linking/Embedding excel table into Word Document



 
 
Thread Tools Display Modes
  #1  
Old August 11th, 2010, 08:32 PM
JenniferJ JenniferJ is offline
Member
 
First recorded activity by OfficeFrustration: Aug 2010
Posts: 1
Default Linking/Embedding excel table into Word Document

I have an excel table with cells that the user will input. I need those cells to populate into a Word document that is a script. I found a way to link the cells to the appropriate positions in word, however you must save then close the word doc and reopen for the word doc to show the changes. My users need to see these changes real time. I have tried to just use excel for the script and use a second tab for the table but the formatting is impossible it seems....is there a better way?

Patiently awaiting a frustration reliever response. Thx
  #2  
Old April 12th, 2011, 04:13 PM
tarquinious tarquinious is offline
Experienced Member
 
First recorded activity by OfficeFrustration: Mar 2011
Posts: 34
Default

Quote:
Originally Posted by JenniferJ View Post
I have an excel table with cells that the user will input. I need those cells to populate into a Word document that is a script. I found a way to link the cells to the appropriate positions in word, however you must save then close the word doc and reopen for the word doc to show the changes. My users need to see these changes real time. I have tried to just use excel for the script and use a second tab for the table but the formatting is impossible it seems....is there a better way?

Patiently awaiting a frustration reliever response. Thx
I can think of a couple of options here, but firstly it is important to understand how you managed to get the Word fields linked to the Excel data.

To do this myself, I simply copied the Excel field, and in Word I selected Paste Special/Paste Link.../Microsoft Excel 2003 Worksheet Object. In this way whenever I update that cell in Excel, the value comes across into the Word document.

This is all well and good when I'm changing Excel and viewing Word on the same machine. I take it your concern is when somebody else updates Excel, the only way to view that update in Word on another machine is to close and re-open the Word document?

There are a couple of things that can be done.
1. The user can periodically right-click the field in Word and select Update Link. Not very nice, but functional.
2. You can put a small macro in Word to update this field. The following seems to work OK, and you can adjust the timing of it (I have it set for every 5 seconds, but that may be too frequent). The issue which you may still find is that this will update from the saved version of the Excel file. In which case you could put a similar macro in Excel to save the file every x seconds.

Code:
Private Sub Document_Open()
    Call UpdateLinks
End Sub
Sub UpdateLinks()
    ' Update all the fields in the document
    ActiveDocument.Fields.Update
    ' Call this macro again after 5 seconds from now
    Application.OnTime When:=Now + TimeValue("00:00:05"), Name:="UpdateLinks"
End Sub
Private Sub Document_Close()
    ' Stop any updates after the document is closed
    Application.OnTime When:=Now, Name:=""
End Sub
Let me know if this helps you at all.

Last edited by tarquinious : April 12th, 2011 at 04:18 PM.
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:59 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.