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

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.

ADAMC

Well-known Member
Joined
Mar 20, 2007
Messages
1,169
Office Version
  1. 2013
Platform
  1. Windows
If i read your question correctly.....Just copy your data...Highlight column 11 to 15 and hit paste!?
 
Upvote 0

ADAMC

Well-known Member
Joined
Mar 20, 2007
Messages
1,169
Office Version
  1. 2013
Platform
  1. Windows
Correction*****

If i read your question correctly.....Just copy your data...Highlight ROW** 11 to 15 and hit paste!?
 
Upvote 0

ADAMC

Well-known Member
Joined
Mar 20, 2007
Messages
1,169
Office Version
  1. 2013
Platform
  1. Windows
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,191,025
Messages
5,984,197
Members
439,877
Latest member
kellylet

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
Top