View Single Post
 
Old 06-29-2014, 06:03 PM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,373
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Is there a reason for not setting up a single reference 'table' in Excel, then linking to that with just one link in Word? As for the macro:
Code:
Sub Demo1()
Selection.PasteExcelTable LinkedToExcel:=True, WordFormatting:=True, RTF:=True
End Sub
 
Sub Demo2()
Selection.PasteSpecial Link:=True, DataType:=wdPasteText
End Sub
The first one pastes a linked Excel table, the second one pastes linked text (as plain text).
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote