Is there a way to copy all picture objects in a specific column over to another column as INDIVIDUAL "Picture (Enhanced Metafile)" pics?
I found this code that selects all objects in a column if it helps...
I found this code that selects all objects in a column if it helps...
Code:
Sub SelectShape()
Dim shp As Shape
Dim r As Range
Set r = Columns("a:c")
For Each shp In ActiveSheet.Shapes
If Not Intersect(Range(shp.TopLeftCell, shp.BottomRightCell), r) Is Nothing Then _
shp.Select Replace:=False
Next shp
End Sub