After running the following piece of code I would expect the cell to be D4 but it's E5. Why? Am I missing something?
***Sub off()
Dim testRange As Range
Set testRange = Range("b2:i10")
MsgBox ("Here: " & testRange.Range("B2").Offset(2, 2))
End Sub***