Hi Y'all

I got a list. I want to scrool through the list, and if column E is "True" then I want to select the row. If E in the next row is false, nothing happens. If E in row three is true, I want this row to be selected as well. So that I end up with e.g. two rows selected.

So far I cot this:
Sub done()

For i = 40 To 150
If Sheets("Opgavematrix").Cells(i, 5) = True Then

Range(Sheets("Opgavematrix").Cells(i, 2), Sheets("Opgavematrix").Cells(i, 2).Offset(0, 6)).Select

End If

Next

End Sub
When I run this code, the first selection is discartet in favour of the second selection.

Thanks in advance!

Kind Regards
Krand