I have a file with sheets of monthly reports, and one sheet with all these monthly reports consolidated.
I would like to build a VBA code which will let the user select a range with his mouse (this currently works), and then paste the range selected to the last row +1 in the consolidated sheet (I needed to use column B last row, then move to column A because it is required in my sheet).
Code I built so far:
Sub miseAJour()
Dim rng As Range
Dim rgndest As Range
Set rng = Application.InputBox("Select a range", "Obtain Range Object", Type:=8)
Range("B" & Rows.Count).End(xlUp).Offset(1).Select
ActiveCell.Offset(0, -1).Select
End Sub
The missing part is the paste of rng to the active cell selected.