copying data as image

Tony Miall

Active Member
Joined
Oct 16, 2007
Messages
304
evening all,

I have a range of data, A14:X67, and want to copy the range as an "image" then somehow attach to a cell with the ability to regenerate the image. I done few web searches and found similar type processes but not what I'm looking for. Appreciate anyone pointing me in the right direction.

Thanks
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Copy the range, then click the Paste dropdown and choose Paste Picture.
 
Upvote 0
Thanks Rory, but how do I attach to a cell?

I will be clearer.. I want to write a macro that attaches a picture of a group of cells into one cell with visible text such as "Smith", then the user selects the cell "Smith", runs the toggle macro and the picture is regenerated to the original size and then minimised again, I don't even know if this is possible??
 
Upvote 0
Change I7 and sheet name to appropriate.
Code:
Sub PasteAsImage()
    Range("A14:X67").Copy
    With Sheets(1)
        .Range("I7").Select
        .Pictures.Paste
    End With
End Sub
 
Upvote 0
Thanks Sektor,

This is all straight forward, what I'm trying to understand is if it's possible to attach the picture to the cell not just position it on the sheet
 
Upvote 0
Code:
Sub PasteAsImage()
    Range("A14:X67").Copy
    With Sheets(1)
        .Range("I7").Select
        .Pictures.Paste [B][COLOR="Red"]Link:=True[/COLOR][/B]
    End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,509
Messages
6,179,192
Members
452,893
Latest member
denay

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