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

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
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,650
Messages
6,126,019
Members
449,280
Latest member
Miahr

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