Range Select

  • Thread starter Thread starter ranswert
  • Start date Start date
R

ranswert

When I use something similiar to "Range(activecell.offset(5,1)).select" it
doesn't work. What do I need to do to select a single cell using Range?
Thanks
 
You are very close:

ActiveCell.Offset(5,1).Select

you don't need the Range() function because ActiveCell is already a range.
 
Thanks that helps

Gary''s Student said:
You are very close:

ActiveCell.Offset(5,1).Select

you don't need the Range() function because ActiveCell is already a range.
 

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