View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
almostthere[_4_] almostthere[_4_] is offline
external usenet poster
 
Posts: 1
Default how to select multiple rows using vba

Chip Pearson wrote:
[b]Try something like

Do While Worksheets(I).Cells(InputRow, 1).Value < ""
Range(Cells(1, 1), Cells(InputRow, 1)).EntireRow.Select
InputRow = InputRow + 1
Loop



Worked Great!!! Thanks:

--
Message posted from http://www.ExcelForum.com