Pasting Upwards

LEEBOO

New Member
Joined
Jun 7, 2005
Messages
16
Is there a way to paste data up instead of down? For instance, if I have data in col A Rows 1-5 and I copy and then move to row 15, can I paste the data so that it fills upwards from 15 to 11?
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
If i read your question correctly.....Just copy your data...Highlight column 11 to 15 and hit paste!?
 
Upvote 0
Correction*****

If i read your question correctly.....Just copy your data...Highlight ROW** 11 to 15 and hit paste!?
 
Upvote 0
Okay, so why not just paste from Row 11 it would paste down to row 15 anway?

Or if its always the same action of copy ROW 1 TO 5 and paste up from row 15....
Sub pasteup
Rows("1:5").Select
Selection.Copy
Rows("11:15").Select
Range("A15").Activate
ActiveSheet.Paste
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,593
Messages
6,120,434
Members
448,961
Latest member
nzskater

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