I have 1 table “DataEntry” in sheet (1) the range is A3:R20
I want to paste it on my second sheet sheet(2) “Database” at cell "A3” and then clear the data entry table.
My current Marco is:
Sub CopyTable()
Worksheets (1). ListObjects("DataEntry").Range.Copy _
Destination:=Worksheets(2).Range ("A3")
End Sub