i have a table("table1") in one sheet.i have a button that adds the data in the table to another table in another sheet("table").every time its overriding the data. i want to add the data("table1") to the table("table2") instead of overriding it. this is the code:
Sheets("Letter (P V)").ListObjects("Table1").Range.Copy _
Destination:=Sheets("Actual").Range("E2")
thanks!