The Offset method can also use negative arguments. A negative row offset refers to a row above the range. A negative column offset refers to a column to the left of the range. : Range Reference « Excel « VBA / Excel / Access / Word
The Offset method can also use negative arguments. A negative row offset refers to a row above the range. A negative column offset refers to a column to the left of the range.
Sub offsetNe()
range("C2").offset(-1, -2).Select End Sub