Movement

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

How can I move to the cell in column "A" on the row that I
am currently on. I want to be able to move to column A
from any row and the row will change.

Looking for something like:

Range("A" & Row).select

This doesn't work, but is something similar possible
 
Hi,

Try:
Cells(ActiveCell.row, 1).Seleect

or

ActiveCell.EntireRow.Cells(1).Select


However, you rarely need to physically select a cell. Most operations can be
effected by referring to the cell.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top