Copy excel range as Bitmap in clipboard

atuljadhavnetafim

Active Member
Joined
Apr 7, 2012
Messages
341
Office Version
  1. 365
Platform
  1. Windows
Hi Experts,

I have 30+ sheets that have some data which I need to copy and paste in PPT as a bitmap.
now every time I need to select range manually > copy > paste as bitmap in PPT.
if any changes in excel then again I need to copy that part again and paste it into PPT.
so what I need in the macro which copies range as a bitmap and then manually paste in PPT.
every sheet has a different range, please give me one sheet ("Actual Sales"). range("N3:Y37").
Please note: some rows will be hide which no need to copy, only display items should be a copy and stored in the clipboard.
then I will paste wherever I need to paste.
I tried the below code but it pastes excel as a table.

Code:
Sub copy_to_Clipboard()
Worksheets("Actual Sales").Range("N3:Y37").Copy
End Sub


Thanks in advance
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Try...

VBA Code:
Worksheets("Actual Sales").Range("N3:Y37").CopyPicture Appearance:=xlScreen, Format:=xlBitmap

Hope this helps!
 
Upvote 0
Solution

Forum statistics

Threads
1,225,137
Messages
6,183,080
Members
453,146
Latest member
Lacey D

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