I would like to write a macro that takes a range of cells, copies them as an image, and then store this image into an picture
or shape
variable that I can pass into a subsequent method call.
Call Sheet6.Range("G1:V33").CopyPicture(xlScreen, xlPicture)
So far, using a tutorial, I have this line, though I am a bit unsure of what exactly the call
tag is doing, and if I can use this way to later store it into a shape
or picture
named heatMap
Thank you in advance.