thedeadzeds
Active Member
- Joined
- Aug 16, 2011
- Messages
- 451
- Office Version
- 365
- Platform
- Windows
Hi Guys,
What am I missing below? I just want to copy from cell AH3 in the data sheet to the last row in column C in the Check sheet
Thanks
What am I missing below? I just want to copy from cell AH3 in the data sheet to the last row in column C in the Check sheet
Thanks
VBA Code:
Sub Copy()
Dim Last_Row As Long
Sheets("Check").Select
Last_Row = Range("C2").End(xlDown).Offset(1).Row
Sheets("Data").Select
Range("AH3").Copy
Sheets("Check").SelectRange ("c" & Last_Row)
End Sub