I developed a macro that imports a column from one sheet to another in the same Workbook. This works, but now what I want is that when I modify a cell in the first sheet, it doesn't crush it in the other sheet. Instead I would like it to add it to the bottom of the other sheet.
Public Sub Click()
Sheets("PTR").Range("B6").Select
lRow = Worksheets("Analyse").Range("C6").End(xlDown).Row
Worksheets("Analyse").Range("C6:C" & lRow).Copy Destination:=Sheets("PTR").Range("B6:B" & lRow)
Application.CutCopyMode = False
End Sub