For Each shpPicChk In ActiveSheet.Shapes ' 尋找範圍:[T1:V100]內有無圖片(且不為下拉按鈕), 如果有的話, 則刪除.
If Left(shpPicChk.Name, 4) <> "Drop" Then
If (shpPicChk.TopLeftCell.Column >= 20 And shpPicChk.TopLeftCell.Column <= 21 And shpPicChk.TopLeftCell.Row >= 1 And shpPicChk.TopLeftCell.Row <= 100) Then
shpPicChk.Delete
End If
End If
Next shpPicChk