Selecting Everything In a Range

ercedwards

Board Regular
Joined
Apr 27, 2013
Messages
125
I have a worksheet that has data and images on it.

I want to e-mail everything that is visible in a given range, including the images.

I can already select all the data and put it in the e-mail using
Set rng = Sheets("Invoice").Range("A1:I151").SpecialCells(xlCellTypeVisible)

but I need the images as well.

Any tricks?

Thanks
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
ercedwards,

You might consider the following to select the shapes...

Code:
Sub SelectShapes()
Dim shp As Shape, rng As Range
Set rng = Sheets("Invoice").Range("A1:I151").SpecialCells(xlCellTypeVisible)
For Each shp In Sheets("Invoice").Shapes
    If Not Intersect(Range(shp.TopLeftCell, shp.BottomRightCell), rng) Is Nothing Then _
        shp.Select Replace:=False
Next shp
Selection.Copy
End Sub

Cheers,

tonyyy
 
Upvote 0

Forum statistics

Threads
1,215,465
Messages
6,124,982
Members
449,201
Latest member
Lunzwe73

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