View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett[_4_] Don Guillett[_4_] is offline
external usenet poster
 
Posts: 2,337
Default Determining Active Row Number

'active row is
activecell.row

'2 down
activecell.offset(2).select

"John Renkar" wrote in message
...
How can I determine the row number of the active row in
VBA Code? Or, how can I move down two rows using VBA code

Thank You in advance

John