Below code only work to select single cell. Let say last row is row 50. How do I select range of last row between A50 to Z50.
Cells(LastRow + 1, "A").Select
Is it possible to combine below codes into single line?
Cells(LstRow, "C").Formula = "=SUM(C4:C" & LstRow - 1 & ")"
Cells(LstRow...