On May 29, 1:25*pm, George <dz...@yahoo.com> wrote:
> Hi, all:
>
> I need to define a cell range which always starts with cell A3 and
> have a known number of cells. For example, if I know the number of
> cells to be included in this cell range is 5, the cell range will be
> A3:A8. and if I know the number of cells to be included in this cell
> range is 10, then the cell range will be A3:A13. I do not want to
> exclude blank cells within the cell range.
>
> Please advise,
>
> Thanks
Sub oneWay()
Dim num As Integer
num = 5
Range("A3").Resize(num + 1).Select
End Sub
|