Sub SelectRows()
Dim iRow As Long
iRow = ActiveCell.Row
Set resultingSelect = Rows(iRow).EntireRow
Do
Set resultingSelect = Application.Union(resultingSelect, Rows(iRow).EntireRow)
iRow = iRow + 3
Loop Until IsEmpty(Cells(iRow, 1))
resultingSelect.Select
End Sub