WaterSprite
Technical User
I would like to activate a cell upon entering data into a cell. The equivilant of enter data, move two cells to the right, enter data, two cells to the right, etc.
I tried this:
private Sub worksheet_selection change byvalue(target as Range)
Activecell.Offset(0,2).activate
end sub
it worked, but the activecell ended up in column IV, not a couple of columns over from where I entered data.
I tried this:
private Sub worksheet_selection change byvalue(target as Range)
Activecell.Offset(0,2).activate
end sub
it worked, but the activecell ended up in column IV, not a couple of columns over from where I entered data.