Hi guys im trying to quickly find the row number of my shapes., they are added trough another macro.
I had success with this code to find the location:
For Each Shp In ActiveSheet.Shapes
If Shp.Name = Application.Caller Then StartPos = Shp.TopLeftCell.Row
Next Shp
But can this...