Adding an Offset Row to a Given Range. Excel VBA
问题 I have a variable which at the beginning is set to a given range. I want to have a loop statement that would take the next row down from the end of the given range and add it to that range. ie: myRows = Range(1:10) For Each cell in myRows If cell.Value > 2048 Then myRows = myRows + myRows.Offset(1, 0) ---This is where i need help--- Basically how do i auto increment the range each time the loop runs. Edit: Also how would I Add to the front of the range. As well as Take away from the back of