I
ina
Hello,
I have this piece of code that each time that sets a range and assign
this data to the range.
Dim rngNextCell As Range
Set rngNextCell = Cells(Rows.Count, "A").End(xlUp).Offset(1, 0)
rngNextCell.Resize(UBound(vartbl, 1) - LBound(vartbl, 1) + 1,
UBound(vartbl, 2) - LBound(vartbl, 2) + 1).Value = vartbl
What I would like to do it that the next time a run this macro, the
actual range will be rewrited by the new range
I have this piece of code that each time that sets a range and assign
this data to the range.
Dim rngNextCell As Range
Set rngNextCell = Cells(Rows.Count, "A").End(xlUp).Offset(1, 0)
rngNextCell.Resize(UBound(vartbl, 1) - LBound(vartbl, 1) + 1,
UBound(vartbl, 2) - LBound(vartbl, 2) + 1).Value = vartbl
What I would like to do it that the next time a run this macro, the
actual range will be rewrited by the new range