Howdy:

Dumb question of the day...

I have an application with row-wise data. When I double-click on any of the cells within that row, the first thing that I need to do is move "activeCell" to the left-most cell within that row (col "a") so that all of my activeCell.offset statements will work. What I use now is...

    Range("A" & ActiveCell.Row()).Select
Any ideas on the VBA equivalent of that command?

TIA.

Bob