VBA Help with Copying User Selected Cells and Paste Values down 1 Row

CongoJr

New Member
Joined
Jun 29, 2017
Messages
3
Can a macro be made for the following...

The user will select cells in a row (like I3,J3,K3,N3,O3) but i will not know which row they will be selecting from and copy those values down 1 row

Thanks for your help
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Hi & welcome to MrExcel.
How about
Code:
Sub CongoJr()
   Dim Rng As Range
   For Each Rng In Selection.Areas
      Rng.Resize(2).Filldown
   Next Rng
End Sub
 
Upvote 0
Thanks Fluff!!!
I can make that work.
Sorry, but i have no idea what i am doing with the code, but is there a way to paste down just the values?
My border formatting is getting messed up a bit. If not, no big deal I am so glad it is working!
Thanks Again
 
Upvote 0
For values only try
Code:
Sub CongoJr()
   Dim Rng As Range
   For Each Rng In Selection.Areas
      Rng.Offset(1).Value = Rng.Value
   Next Rng
End Sub
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,025
Members
448,939
Latest member
Leon Leenders

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