atuljadhavnetafim
Active Member
- Joined
- Apr 7, 2012
- Messages
- 341
- Office Version
- 365
- Platform
- 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.
Thanks in advance
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