我有一个变量,它在开始时设置为给定范围。
我想要一个循环语句,它将下一行从给定范围的末尾取出并将其添加到该范围。
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---
基本上我如何在每次循环运行时自动增加范围。
编辑:
另外我将如何添加到范围的前面。以及从范围的后面带走。
IE
Range(1:10) 未隐藏 Range(11:20) 已隐藏
我想在未隐藏的范围内添加一个,这将带走隐藏范围,因此它:
Range(1:11) 未隐藏 Range(12:20) 已隐藏