Can someone explain the difference between these two?
and
Is it where the number of cells in the row with data starts?
Thanks
Code:
LastRow = Cells(Cells.Rows.Count, "b").End(xlUp).Offset(1).Row
and
Code:
LastRow = Cells(Cells.Rows.Count, "b").End(xlUp).Row
Is it where the number of cells in the row with data starts?
Thanks