macro to move data from one sheet to another when i click on its name

tonywatsonhelp

Well-known Member
Joined
Feb 24, 2014
Messages
3,194
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi Everyone,
please help if you can.

I need a macro to do the following

In Sheets"Prices" range V28:v228 i have order names

I have the details of all my orders in sheet "Data"
In sheet "data" Column D I have the order names

So this is what i want to do,

Click on an order name from Sheets"Prices" range V28:v228 trigger a macro that will go to
sheet "data" Column D and filter for that name (there will always be at least one row but can be more)

Take the filtered data and paste values only

copy Range C to H
paste values into sales starting at cell AD33

i'm struggling to get the macro to trigger when i click the name?

thanks

Tony
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Try this code: I have presumed that the output goes to a tab called Sales:
I thought the easiest way to trigger it is to use the double click event on the "prices" worksheet:
VBA Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
 If Not (Intersect(Target, Range("V28:V228")) Is Nothing) Then
    Dim temparr(1 To 1, 1 To 6) As Variant
    With Worksheets("Data")
     lastrow = .Cells(Rows.Count, "D").End(xlUp).Row
     datar = .Range(.Cells(1, 1), .Cells(lastrow, 8))
    End With
    With Worksheets("Sales")
     lastsales = .Cells(Rows.Count, "AD").End(xlUp).Row + 1
     If lastsales < 33 Then   ' make sure output start in row 33 at least
       lastsales = 33
     End If
     For i = 1 To lastrow
        If Target.Value = datar(i, 4) Then
           For k = 1 To 6
            temparr(1, k) = datar(i, 2 + k) ' copy data to output buffer
           Next k
           .Range(.Cells(lastsales, 30), .Cells(lastsales, 35)) = temparr ' write line out to worksheet
           lastsales = lastsales + 1
        End If
    Next i
    End With
       
 End If
 
End Sub
 
Upvote 0
Solution
Thanks offthelip,
this is great, sorry it took me a while to reply I've been off for a few days.
Thanks very much for your help
Tony
 
Upvote 0

Forum statistics

Threads
1,213,567
Messages
6,114,344
Members
448,570
Latest member
rik81h

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