Macros

  • Thread starter Thread starter Elly
  • Start date Start date
E

Elly

Hi!

Would it be possible to use a macro to move the cursor
from a (variable) cell on the current row to a (fixed)
cell on that same row - for example, from A2 to R2, B4 to
R4, C5 to R5, etc?

TIA!

Elly
x
 
Something like:

activesheet.cells(activecell.row,"R").select

might do it for you.
 
another. Change 12 to fit your desires.
activecell.offset(,12).select
 
To always end in the same column (like column R)???

maybe:

ActiveCell.Offset(, 18 - ActiveCell.Column).Select
 

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