Thread: Range Select
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default Range Select

You are very close:

ActiveCell.Offset(5,1).Select

you don't need the Range() function because ActiveCell is already a range.
--
Gary''s Student - gsnu200764


"ranswert" wrote:

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