Copy/paste adjacent cells on the same row when the target is selected

Sleeplol

Board Regular
Joined
Apr 10, 2019
Messages
194
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
Hello,

How would you copy/paste adjacent cells on the same row when the target is selected?
For instance if any cell between P21:P1000 is selected then that cell and cells in different columns (P:T) on the same row are pasted to B2:F2

I've done this with one cell using the below, but I'm getting worked trying to figure out how to move multiple cells
VBA Code:
Sub Add_PO()
ActiveCell.Select
Selection.Copy
Range("B2").Select
Worksheets("Dashboard").Paste
Application.CutCopyMode = False
End Sub

And I reference it from WS code:
VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Range("P21:P1000")) Is Nothing Then
     Call Add_PO
    End If
End Sub

I appreciate any help with this
Thanks
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
How about
VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
   If Not Intersect(Target, Range("P21:P1000")) Is Nothing Then
     Target.Resize(, 5).Copy Range("B2")
   End If
End Sub
 
Upvote 0
Oh that's rad.
Thanks Fluff, this works exactly how I needed.
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,394
Members
448,957
Latest member
Hat4Life

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