Excel to Word AutofitContent

johnbird1988

Board Regular
Joined
Oct 6, 2009
Messages
199
Hello,

I have the below code that will copy a table in Excel and then paste it into Word. However I cannot get it to autofitcontents to the page:

Code:
Sheet2.Range("F6:L" & (46 - Application.WorksheetFunction.CountBlank(Sheet2.Range("F6:F51"))) + 5).Copy
HelpDoc.Parent.ActiveDocument.Bookmarks("TEST").Range.PasteAndFormat (wdFormatOriginalFormatting)

I have tried something like:

Code:
Sheet2.Range("F6:L" & (46 - Application.WorksheetFunction.CountBlank(Sheet2.Range("F6:F51"))) + 5).Copy
HelpDoc.Parent.ActiveDocument.Bookmarks("TEST").Range.PasteAndFormat (wdFormatOriginalFormatting)
HelpDoc.Parent.ActiveDocument.Bookmarks("TEST").Range.Tables(1).AutoFitBehavior (wdAutoFitContent)

I still cannot get it to auto fit to the page.

Is anyone able to help please.

Thank you,

John
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.

Forum statistics

Threads
1,214,788
Messages
6,121,588
Members
449,039
Latest member
Arbind kumar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top