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 calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
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,071
Messages
6,122,964
Members
449,094
Latest member
Anshu121

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