currently am pasting various cells from sheet "Hand Off" into "Weekday tracking". The "hand off" will be updated daily so have included a button at the bottom of it to run the macro. The various cells will paste into a row in an excel table with the date. Currently the various cells paste in the first blank row beneath which is good but I had wanted to paste them into an excel table to be able to later make pivot tables.
Attached is the code and a screenshot. Thanks!
Sub SummaryOfDailyHandOff()
Worksheets("Weekday Tracking").Range("A" & Rows.Count).End(xlUp).Offset(1, 0).Value = Date
Worksheets("Hand Off").Range("G61").Copy 'copies individual cells
Worksheets("Weekday Tracking").Range("D" & Rows.Count).End(xlUp).Offset(0, 0).PasteSpecial Paste:=xlPasteValues 'Pastes values of the formulae
Worksheets("Hand Off").Range("D54").Copy 'copies individual cells
Worksheets("Weekday Tracking").Range("E" & Rows.Count).End(xlUp).Offset(0, 0).PasteSpecial Paste:=xlPasteValues 'Pastes values of the formulae
Worksheets("Hand Off").Range("L21").Copy 'copies individual cells
Worksheets("Weekday Tracking").Range("F" & Rows.Count).End(xlUp).Offset(0, 0).PasteSpecial Paste:=xlPasteValues 'Pastes values of the formulae
Worksheets("Hand Off").Range("G54").Copy 'copies individual cells
Worksheets("Weekday Tracking").Range("G" & Rows.Count).End(xlUp).Offset(0, 0).PasteSpecial Paste:=xlPasteValues 'Pastes values of the formulae
Worksheets("Hand Off").Range("D64").Copy 'copies individual cells
Worksheets("Weekday Tracking").Range("H" & Rows.Count).End(xlUp).Offset(0, 0).PasteSpecial Paste:=xlPasteValues 'Pastes values of the formulae
Worksheets("Hand Off").Range("D69").Copy 'copies individual cells
Worksheets("Weekday Tracking").Range("I" & Rows.Count).End(xlUp).Offset(0, 0).PasteSpecial Paste:=xlPasteValues 'Pastes values of the formulae
End Sub