rrodwell85
New Member
- Joined
- Apr 18, 2016
- Messages
- 5
I am trying to compute a score of players based on a macro with a series of checkboxes. The output values of the check boxes are pasted on the "Calculations" worksheet where the score is then computed in cell F18. I would like to copy cell F18 and paste it in the next empty cell of column D on the worksheet of players. So far I have this code:
Dim LastRow As Long
LastRow = Sheets("Players").Cells(Rows.Count, 1).End(xlUp).Offset(1).Row
Sheets("Calculations").Range("F18").Copy
Sheets("Players").Cells(LastRow, 1).PasteSpecial xlPasteValues
This code works great but how can I modify it to paste in COLUMN D of the Players worksheet????
Dim LastRow As Long
LastRow = Sheets("Players").Cells(Rows.Count, 1).End(xlUp).Offset(1).Row
Sheets("Calculations").Range("F18").Copy
Sheets("Players").Cells(LastRow, 1).PasteSpecial xlPasteValues
This code works great but how can I modify it to paste in COLUMN D of the Players worksheet????