0
我試圖標記有問題的單元格,並將單元格超鏈接鏈接到另一個單元格以供日後查看。這是我的代碼。並非所有代碼都可見。我稱之爲「我」和「j」。該錯誤發生在newLink = Range("AL" & i).Hyperlinks(1).Address
,聲稱它「超出範圍」。我認爲這意味着它會調用一些不存在的東西,但說實話我不確定。通過超鏈接複製編錄有問題的單元格
If Range("AK" & i).Value = "On" Then
If Range("AL" & i).Value = 0 And Range("AM" & i).Value = 0 Then
Range("AL" & i, "AM" & i).Interior.ColorIndex = 6
'Cells("AL" & i) = H.Address'
ErrorCount = ErrorCount + 1
Dim newLink As String
newLink = Range("AL" & i).Hyperlinks(1).Address
Range("IV" & j).Hyperlinks.Add anchor:=Range("IV" & j), Address:=Range("IV" & j)
Range("IV" & j).Hyperlinks(1).Address = newLink
j = j + 1
End If
你試過了沒有.address? – User632716