View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default VBA to select cell in column A

Try this

Cells(ActiveCell.Row, 1).Select

Note it's unlikely you have to select the cell to do what you want.

Mike

"Shawn" wrote:

I need a simple VBA that will move the active cell to the A column in the
same row.
--
Thanks
Shawn