Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.links
|
|||
|
|||
![]()
Hello,
We have a Word document with approx 90 fields linked to an Excel workbook. What we're trying to do is have an Excel VBA procedure step through a table in the workbook, copy each record to the linked cells, refresh the links and print the document, then on to the next record, etc. The number of records is small (under 50), but the length is 86 fields (cells) This idea would appear to work in theory, but it runs extremely slowly and suffers from frequent crashes (usually Word). It seems to work Ok when I drastically cut back the number of links, but the crash frequency goes up as the number of links goes up. Is the way to go, does anyone have any thoughts about this? To date I haven't found anything on the Web or groups that quite addresses this. Also, searching the Help didn't reveal any info re the maximum number of links. I'm running Office 2007. Thanks for your help, Regards, Dave |
#2
![]()
Posted to microsoft.public.excel.links
|
|||
|
|||
![]()
Have you considered using Mailmerge?
Bill Manville MVP - Microsoft Excel, Oxford, England No email replies please - respond to newsgroup |
#3
![]()
Posted to microsoft.public.excel.links
|
|||
|
|||
![]()
Hi Bill,
Thanks for pointing me in that direction. As one who has always worked with Excel, but rarely with Word, MailMerge just never occured to me. All the same, I'm still not sure why those links didn't work as expected. Thanks again, regards, Dave On Nov 7, 1:22 am, Bill Manville wrote: Have you considered using Mailmerge? Bill Manville MVP - Microsoft Excel, Oxford, England No email replies please - respond to newsgroup |
#4
![]()
Posted to microsoft.public.excel.links
|
|||
|
|||
![]()
Hi Dave,
If these are the same Excel cells you're referencing each time, simply copying them once into Word with Edit|Paste Special and checking the 'Link' option will set the links up permanently. Then all you'll need to do is to refresh them periodically, which is as simple as opening the Word document. Cheers -- macropod [MVP - Microsoft Word] ------------------------- "Dave" wrote in message oups.com... Hi Bill, Thanks for pointing me in that direction. As one who has always worked with Excel, but rarely with Word, MailMerge just never occured to me. All the same, I'm still not sure why those links didn't work as expected. Thanks again, regards, Dave On Nov 7, 1:22 am, Bill Manville wrote: Have you considered using Mailmerge? Bill Manville MVP - Microsoft Excel, Oxford, England No email replies please - respond to newsgroup |
#5
![]()
Posted to microsoft.public.excel.links
|
|||
|
|||
![]()
Hi macropod,
Thanks for your response. Yes, that's how we had them set up, and they worked fine in a semi- static evironment. What we were doing was stepping through a table in Excel and updating the linked cells with each record (using VBA from Excel), then printing the linked Word document.. In other words, we were attempting to do a batch print job, using the Excel data and printing it on a Word document (form). It was this dynamic updating and refreshing that was bringing the system to it's knees. As Bill ponted out, MailMerge was probably the better way to go, but as it turned out, we converted the Word form to Excel, so thus eliminated the problem. thanks, Dave On Nov 10, 4:21 am, "macropod" wrote: Hi Dave, If these are the same Excel cells you're referencing each time, simply copying them once into Word with Edit|Paste Special and checking the 'Link' option will set the links up permanently. Then all you'll need to do is to refresh them periodically, which is as simple as opening the Word document. Cheers -- macropod [MVP - Microsoft Word] ------------------------- "Dave" wrote in ooglegroups.com... Hi Bill, Thanks for pointing me in that direction. As one who has always worked with Excel, but rarely with Word, MailMerge just never occured to me. All the same, I'm still not sure why those links didn't work as expected. Thanks again, regards, Dave On Nov 7, 1:22 am, Bill Manville wrote: Have you considered using Mailmerge? Bill Manville MVP - Microsoft Excel, Oxford, England No email replies please - respond to newsgroup- Hide quoted text - - Show quoted text - |
#6
![]()
Posted to microsoft.public.excel.links
|
|||
|
|||
![]()
Hi Dave,
For future reference, updating the links in Word by code could be as simple as 'ActiveDocument.Fields.Update' Cheers -- macropod [MVP - Microsoft Word] ------------------------- "Dave" wrote in message oups.com... Hi macropod, Thanks for your response. Yes, that's how we had them set up, and they worked fine in a semi- static evironment. What we were doing was stepping through a table in Excel and updating the linked cells with each record (using VBA from Excel), then printing the linked Word document.. In other words, we were attempting to do a batch print job, using the Excel data and printing it on a Word document (form). It was this dynamic updating and refreshing that was bringing the system to it's knees. As Bill ponted out, MailMerge was probably the better way to go, but as it turned out, we converted the Word form to Excel, so thus eliminated the problem. thanks, Dave On Nov 10, 4:21 am, "macropod" wrote: Hi Dave, If these are the same Excel cells you're referencing each time, simply copying them once into Word with Edit|Paste Special and checking the 'Link' option will set the links up permanently. Then all you'll need to do is to refresh them periodically, which is as simple as opening the Word document. Cheers -- macropod [MVP - Microsoft Word] ------------------------- "Dave" wrote in ooglegroups.com... Hi Bill, Thanks for pointing me in that direction. As one who has always worked with Excel, but rarely with Word, MailMerge just never occured to me. All the same, I'm still not sure why those links didn't work as expected. Thanks again, regards, Dave On Nov 7, 1:22 am, Bill Manville wrote: Have you considered using Mailmerge? Bill Manville MVP - Microsoft Excel, Oxford, England No email replies please - respond to newsgroup- Hide quoted text - - Show quoted text - |
#7
![]()
Posted to microsoft.public.excel.links
|
|||
|
|||
![]() Hi macropod, That's what we were doing! There was a lot of disk swapping going on while running our 'batch print' application, it seemed like the process was maxing out the system resources (most likely memory), even though the application itself was quite small. regards, Dave On Nov 12, 1:04 am, "macropod" wrote: Hi Dave, For future reference, updating the links in Word by code could be as simple as 'ActiveDocument.Fields.Update' Cheers -- macropod [MVP - Microsoft Word] ------------------------- "Dave" wrote in ooglegroups.com... Hi macropod, Thanks for your response. Yes, that's how we had them set up, and they worked fine in a semi- static evironment. What we were doing was stepping through a table in Excel and updating the linked cells with each record (using VBA from Excel), then printing the linked Word document.. In other words, we were attempting to do a batch print job, using the Excel data and printing it on a Word document (form). It was this dynamic updating and refreshing that was bringing the system to it's knees. As Bill ponted out, MailMerge was probably the better way to go, but as it turned out, we converted the Word form to Excel, so thus eliminated the problem. thanks, Dave On Nov 10, 4:21 am, "macropod" wrote: Hi Dave, If these are the same Excel cells you're referencing each time, simply copying them once into Word with Edit|Paste Special and checking the 'Link' option will set the links up permanently. Then all you'll need to do is to refresh them periodically, which is as simple as opening the Word document. Cheers -- macropod [MVP - Microsoft Word] ------------------------- "Dave" wrote in ooglegroups.com... Hi Bill, Thanks for pointing me in that direction. As one who has always worked with Excel, but rarely with Word, MailMerge just never occured to me. All the same, I'm still not sure why those links didn't work as expected. Thanks again, regards, Dave On Nov 7, 1:22 am, Bill Manville wrote: Have you considered using Mailmerge? Bill Manville MVP - Microsoft Excel, Oxford, England No email replies please - respond to newsgroup- Hide quoted text - - Show quoted text -- Hide quoted text - - Show quoted text - |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel sheet with links to Word doc | Excel Discussion (Misc queries) | |||
HELP! Links in Excel & Word not working | Excel Discussion (Misc queries) | |||
Packaging Word & Excel files for emailling to preserve links | Excel Discussion (Misc queries) | |||
Excel links in Word | Excel Discussion (Misc queries) | |||
Update Excel links in Word | Excel Discussion (Misc queries) |