Copy paste last row help

thedeadzeds

Active Member
Joined
Aug 16, 2011
Messages
442
Office Version
  1. 365
Platform
  1. 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

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
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
How about:
VBA Code:
Sub Copy()
    Sheets("Data").Range("AH3").Copy Sheets("Check").Cells(Sheets("Check").Rows.Count, "C").End(xlUp).Offset(1)
End Sub
 
Upvote 0
How about:
VBA Code:
Sub Copy()
    Sheets("Data").Range("AH3").Copy Sheets("Check").Cells(Sheets("Check").Rows.Count, "C").End(xlUp).Offset(1)
End Sub
great thanks, can I change that to just paste values?
 
Upvote 0
Try:
VBA Code:
Sub Copy()
    Sheets("Check").Cells(Sheets("Check").Rows.Count, "C").End(xlUp).Offset(1).Value = Sheets("Data").Range("AH3").Value
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,076
Messages
6,122,983
Members
449,092
Latest member
Mr Hughes

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top