我有一個範圍,我想檢查是否有任何形狀放在它上面。Excel 2003,如何獲取範圍的左上角和右下角?
我發現了一個腳本在線(http://www.mrexcel.com/forum/excel-questions/317711-visual-basic-applications-identify-top-left-cell-selected-range.html),但它不提供Excel 2003年我迄今其從發現腳本adapated工作代碼:
Public Function removeOLEtypesOfType() As Boolean
On Error Resume Next
Dim objTopLeft As Range, objBotRight As Range _
, objRange As Range, objShape As Shape
Set objRange = Sheet1.Range(COLUMN_HEADINGS)
objRange.Select
With Selection
Dim intFirstCol As Integer, intFirstRow As Integer _
, intLastCol As Integer, intLastRow As Integer
intFirstCol = .Column
intFirstRow = .Row
Set objTopLeft = .Cells(intFirstRow, intFirstCol) '.Address(0, 0)
intLastCol = .Columns.Count + .Column - 1
intLastRow = .Rows.Count + .Row - 1
Set objBotRight = .Cells(intLastRow, intLastCol) '.Address(0, 0)
If objTopLeft Is Nothing Or objBotRight Is Nothing Then
MsgBox "Cannot get topleft or bottom right of range!", vbExclamation
removeOLEtypesOfType = False
Exit Function
End If
For Each objShape In ActiveSheet.Shapes
Dim objTLis As Range
Set objTLis = Intersect(objTopLeft, objShape.TopLeftCell)
If Not objTLis Is Nothing Then
Dim objBRis As Range
Set objBRis = Intersect(objBotRight, objShape.BottomRightCell)
If Not objBRis Is Nothing Then
objShape.Delete
End If
End If
Next
End With
Sheet1.Cells(1, 1).Select
removeOLEtypesOfType = True
End Function
objTopLeft和objBotRight都沒有,COLUMN_HEADINGS包含範圍的名稱。
我在調試器中檢查了intFirstCol,intFirstRow,intLastCol和intLastRow,它們都是正確的。
編輯... With .Address註釋掉了兩個topleft和botright範圍都返回,但與.Address in,都是沒有。返回的範圍似乎不是用於正確的位置。
例如,對於所提供的範圍:
intFirstCol = 3
intFirstRow = 11
intLastCol = 3
intLastRow = 186
以上是正確的,但是:
objTopLeft.Column = 5
objTopLeft.Row = 21
objBotRight.Column = 5
objBotRight.Row = 196
以上禰是不正確的,列2和行是10,爲什麼?
發表您的Excel範圍/形狀相關位置/截圖 – user3598756