I've noticed some weird behavior using variables inside the offset method.
Here's my code
Dim r As Integer
r=1
ActiveCell.Offset(0, 1).Select
ActiveCell.Offset(0, 0 + (r = 1)).Select
the first select seems to work as expected, it selects the cell one column to the right.
However, the second actually selects the cell one column to the LEFT! it would seem that would mean that 0 + (r =1)
was evaluating to -1, which seems strange.
Is there something I am missing?