Copy a range sheet and paste in Microsoft word as an image using vba

tobalebari

New Member
Joined
Apr 7, 2018
Messages
2
Please I need you guys help on this...I successfully copied and pasted a sheet as an image on word using the below VBA codes

Sub luxation ()

Dim objWord, objDoc As Object

Activewindow.view=xlNormalView

Range(“B2:S73”).select

Selection.copy picture Appearance:=xlscreen, Format:=xlPicture

Set objWord = createObject(“Word.Application”)

Set objDoc = objWord.Documents.Add

ObjWord.Visible = True

ObjWord.Selection.Paste

objWord.selection.type paragraph

End Sub

Please I need the modified version of the above code so as to copy multiple sheets
and paste as images
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.

Forum statistics

Threads
1,223,888
Messages
6,175,206
Members
452,618
Latest member
Tam84

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