Thread: "rows" syntax
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Michael J. Malinsky Michael J. Malinsky is offline
external usenet poster
 
Posts: 37
Default "rows" syntax

The following selects rows 1 and 2:

Sub Row_Select()

Rows("1:2").Select

End Sub


--
Michael J. Malinsky


"Claude" wrote in message
...
I would like to select a range of rows as follows:
Rows(a,b).Select
Can anybody help me with the correct syntax? Thanks!