I\'m trying to copy and paste a few cells keeping the format and them ebing linked to a table.
Currently i have a table but i am referencing it from another sheet e.
ThisWorkbook.Sheets("Your_Sheet_Name").Range("A99999").End(xlUp).Offset(1, 0)
Modify the above code. What this is doing is selecting cell A99999 and then using the Ctrl and up arrow command to select the last row with a value and offsetting by one so it actually selects the cell below that. You can then paste whatever you want into that cell.