I have multiple images in each cell in column B. There are 1000 rows.
I need a VBA to "auto group" pictures available in each row. But with the below code I can't perform the action in a single cell at a time.
Sub groupimagesandshape()
' group images and shapes in each cell of column B
Sheet1.Shapes.SelectAll
Selection.Group
ActiveWorkbook.Save
End Sub
the shapes are in cells in column B then this code will work.