答案 0 :(得分:1)
只需参考图片的TopLeftCell
属性:
Sub PictureMover()
Dim s As Shape
For Each s In ActiveSheet.Shapes
sAddy = s.TopLeftCell.Address(0, 0)
If sAddy = "A7" Or sAddy = "A8" Then
s.Copy
Sheets("Sheet2").Paste
End If
Next
End Sub