I am using the following steps to copy a range of cells from an Excel
document and paste them into a Word doc.

Past Special > Link > Microsoft Office Excel Worksheet Object

Would someone be able to provide me with some VBA code that could be
used as a macro to automatically re-size all of these objects in Word
to a specified width?


Thank you,
William

Re: Change Width of Objects by Jezebel

Jezebel
Tue Mar 13 22:31:23 CDT 2007

With ActiveDocument.Shapes(n)
.Width = 100
.Height = 100
End with

You'll need your own logic to work out what n should be.





"willr" <williamreigle@gmail.com> wrote in message
news:1173841603.796406.105680@y80g2000hsf.googlegroups.com...
>I am using the following steps to copy a range of cells from an Excel
> document and paste them into a Word doc.
>
> Past Special > Link > Microsoft Office Excel Worksheet Object
>
> Would someone be able to provide me with some VBA code that could be
> used as a macro to automatically re-size all of these objects in Word
> to a specified width?
>
>
> Thank you,
> William
>