Posted to microsoft.public.excel.programming
|
|
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
|