Whilst writing a macro I accidently used a range variable instead of the Cells command which acted like an Offset comand.
Can anyone explain how this works
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rCell As Range
Dim lRow As Long
Dim lDist As Long
For Each rCell In Target
lRow = rCell.Row
lDist = Cells(lRow, "e").Value - Cells(lRow, "d").Value
' i meant to use
'Cells(lRow, "f").Value = lDist
'Accidental ly used the following command
'which offsets rows from rCell by the value
'of lrow - 1
rCell(lRow, "f").Value = lDist
Next
End Sub
Bookmarks