Copy and Paste a Range of Cells into the next blank row on another worksheet

charlie_jd

New Member
Joined
Jan 14, 2020
Messages
12
Office Version
  1. 365
Platform
  1. Windows
Hi there, I am trying to be able to copy a selected range which I have done below...

Sheet2.Range("A2", Range("H2").End(xlDown)).Select
Selection.copy

However, I want to now copy this to the next blank row on another worksheet within the workbook. Can anybody help me try do this please.
I did try to attempt it by doing ...

Sheet13.Range("A1").End(xlDown).Paste

But, it comes up with the message "Object doesn't support this property or method"

Also, is it possible when pasting that it pastes the values and not the formulas.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Change Paste to PasteSpecial
 
Upvote 0
Change Paste to PasteSpecial
Hi there thank you for your help. It now says "Select Method of Range Class Failed"

Sheet2.Range("A2", Range("H2").End(xlDown)).Select
Selection.copy
Sheet13.Range("A1").End(xlDown).Offset(1).Select
ActiveSheet.PasteSpecial
 
Upvote 0
Why not try what I suggested?
 
Upvote 0
What happened when you tried?
 
Upvote 0
It Comes up with the message "Select Method of Range Class Failed" and highlights the third line
 
Upvote 0
That is not what I suggested.
Where did I make any mention of using select?
 
Upvote 0
That was what I originally had. Do you mean the third line should be
Sheet13.Range("A1").End(xlDown).Offset(1).PasteSpecial

and not

Sheet13.Range("A1").End(xlDown).Offset(1).Select

Sorry new to Macros
 
Upvote 0

Forum statistics

Threads
1,214,932
Messages
6,122,331
Members
449,077
Latest member
jmsotelo

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