Thread: Selecting rows
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tim Williams Tim Williams is offline
external usenet poster
 
Posts: 1,588
Default Selecting rows

rows("1:" & i).select

tim

"Shatin" wrote in message
...
If I want to select rows 1 to 15, the syntax is:

rows("1:15").select

What if I want to select rows 1 to i where i is an integer?

Thanks!