VBA code needed for Copy/Paste SheetA to SheetB upon search input

Latteeeee

New Member
Joined
Jan 9, 2023
Messages
10
Office Version
  1. 365
Platform
  1. Windows
very new to VBA but I need a macro that 1)searches for a specific input 2)goes through SheetA(raw data) through the same column to search for input 3) recognize the input search and 4) copies the entire row into SheetB
Conditions:
1) Raw data file will always be different, but the column that input is searched upon will always be the same
2) There might be multiple results for the same search, meaning multiple rows, but each rows will contain varying data
3) Able to not repeat the copy/paste from SheetA to SheetB and not miss out on any rows/searches

*Unsure if xlookup is the way to go in the VBA code
Will really appreciate any help I can get!!

DelMacro2.xlsm
ABCD
1NameItemDate in Date out
2Abc1391003-07-2304-01-23
3Asd1928304-07-2305-01-23
4Aft1421305-07-2306-01-23
5Ayz1391006-07-2307-01-23
6AhE1433107-07-2308-01-23
7
8RawData
RawData


DelMacro2.xlsm
ABCDE
1Search13910<-- Item input cell
2
3NameItemDate outDate in
4
5
6
7^Data from RawData expected to be populated
Form
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Are the Date in and Date out columns meant to swap around (as your example indicates)?
 
Upvote 0
Try this on a copy of your data
VBA Code:
Option Explicit
Sub DelMacro2()
    Dim ws1 As Worksheet, ws2 As Worksheet
    Set ws1 = Worksheets("RawData")
    Set ws2 = Worksheets("Form")
    Dim myInput As String
    myInput = ws2.Range("B1").Value2
   
    'Clear existing data on Form sheet
    ws2.Range("A3:D" & Cells(Rows.Count, "D").End(xlUp).Row).Offset(1).ClearContents
   
    'Copy (then delete?) any data that matches
    With ws1.Cells(1, 1).CurrentRegion
        .AutoFilter 2, myInput
        If ws1.Cells(Rows.Count, 1).End(xlUp).Row > 1 Then
            .Offset(1).Resize(.Rows.Count - 1, 2).Copy ws2.Range("A4")
            .Offset(1, 2).Resize(.Rows.Count - 1, 1).Copy ws2.Range("D4")
            .Offset(1, 3).Resize(.Rows.Count - 1, 1).Copy ws2.Range("C4")
            '.Offset(1).EntireRow.Delete   '<<*** uncomment this if you want to delete the copied data
        Else
            MsgBox "No Items match " & myInput & " - exiting sub"
            .AutoFilter
            Exit Sub
        End If
        .AutoFilter
    End With
End Sub
 
Upvote 0
Solution
Try this on a copy of your data
VBA Code:
Option Explicit
Sub DelMacro2()
    Dim ws1 As Worksheet, ws2 As Worksheet
    Set ws1 = Worksheets("RawData")
    Set ws2 = Worksheets("Form")
    Dim myInput As String
    myInput = ws2.Range("B1").Value2
  
    'Clear existing data on Form sheet
    ws2.Range("A3:D" & Cells(Rows.Count, "D").End(xlUp).Row).Offset(1).ClearContents
  
    'Copy (then delete?) any data that matches
    With ws1.Cells(1, 1).CurrentRegion
        .AutoFilter 2, myInput
        If ws1.Cells(Rows.Count, 1).End(xlUp).Row > 1 Then
            .Offset(1).Resize(.Rows.Count - 1, 2).Copy ws2.Range("A4")
            .Offset(1, 2).Resize(.Rows.Count - 1, 1).Copy ws2.Range("D4")
            .Offset(1, 3).Resize(.Rows.Count - 1, 1).Copy ws2.Range("C4")
            '.Offset(1).EntireRow.Delete   '<<*** uncomment this if you want to delete the copied data
        Else
            MsgBox "No Items match " & myInput & " - exiting sub"
            .AutoFilter
            Exit Sub
        End If
        .AutoFilter
    End With
End Sub
Thank you! It worked wonderfully for the sample data. For my actual application, I have a set of raw data that always changes in terms of rows generated, but the "searched" cell will always be under the same column, and my objective is to be able to search for different "searched cell", and have the data populated in "Form". So whenever I change the input in the searched cell and run the macro, it always repopulate to display only the rows I need.
Can you point me in the right direction?
 
Upvote 0
The code in post #5 uses an AutoFilter on column B - so it will always only grab the rows that match your input value on the Form sheet.
 
Upvote 0
The code in post #5 uses an AutoFilter on column B - so it will always only grab the rows that match your input value on the Form sheet.
The actual data the input is from is actually Col F, can you tell me which part of the code I have to edit for it to search the input data under Col F?
Edit: I just changed the Autofilter 2 to 6 (which is the col I need it to be) and it generated the data I want.

I will work on editing the code accordingly to populate more data that I seek.
Can I just confirm with you that if I add in more [.Offset(1, 3).Resize(.Rows.Count - 1, 1).Copy ws2.Range("C2")] accordingly, it should display the remaining col from the actual raw data?
But thank you very much! You've really helped me a lot!
 
Upvote 0
Glad I was able to help. With regard to this:
Can I just confirm with you that if I add in more [.Offset(1, 3).Resize(.Rows.Count - 1, 1).Copy ws2.Range("C2")] accordingly, it should display the remaining col from the actual raw data?
I'm afraid that I don't quite follow your meaning. The code already has an .Offset(1,3) - which is moving the focus to column D in the "RawData" sheet. If you mean there are more columns you want to copy from the "RawData" sheet to the "Form" sheet (columns to the right of D) then yes, you're on the right track, but you don't necessarily have to do one column at a time if the columns are contiguous and you don't want the orders changed. If you could provide a before-and-after example using the XL2BB add in then perhaps I could help?
 
Upvote 0
Yes that is what I meant.
Below I've provided a sample of the actual data I'm working with.
So my obj is that whenever I input the "CPN" I wish to search for, the macro will search off Col F in the raw data sheet, and copy/paste the data to the "Form" sheet with the newly arranged order. And each time I search, all data in the Form sheet (apart from headings and the rest) will be deleted. So like it renews and shows only the CPN related data I searched for.
In a way, I am also plucking specific columns of data that I want, to be pasted in the order that I want from raw data sheet to form sheet.

Delivery = Raw Data
DelMacro.xlsm
ABCDEFGHIJKLMNOPQRSTUV
1Overall credit statusSold-toShip-to name1Ship-toShip-to landCPNSales ProductFinished ProductAllocation PolicySales OrderDeliveryQty.Delivery Creation DatePlanned GI DateActual GI DateIncotermLast Leg Forwarder No.Last Leg Forwarder NameLast Leg AWB No.Sp DescriptionPlantPOD Date/Time(Last Leg)
2A32141tomatoqwe1230139102SG8611200593SP0129310MA129301391AL119023910398123919309,000.00031-12-2209-01-23SAP1230912031SG0200-01-00 0:00
Delivery


Del=Form
DelMacro.xlsm
ABCDEFGHIJ
1CPN Search cell
2DeliveryDelivery Creation DatePlanned GI DateActualy GI DateCPNQTYShip ToIncotermLast Leg Forwarder NameLast Leg AWB No
3
4
5
6
7
8
9
10
11
12
Del
 
Upvote 0
That's quite a jumble of the order ;)
Personally, I would use a custom sort, left to right, to get all the columns in the right order before the copy. I think I've got the order right - try (again) on a copy of your actual data. Copy all of the code below to a standard mode (uncomment the delete line if you want to delete chosen data after the copy).

VBA Code:
Option Explicit
Dim ws1 As Worksheet, ws2 As Worksheet
Sub DelMacro3()
    Application.ScreenUpdating = False
    Set ws1 = Worksheets("Delivery")
    Set ws2 = Worksheets("Del")
    Dim myInput As String, x As String
    myInput = ws2.Range("E1").Value2
    x = "X"
    
    'Clear existing data on Form sheet
    ws2.Range("A2:J" & Cells(Rows.Count, "A").End(xlUp).Row).Offset(1).ClearContents
   
    'Copy (then delete?) any data that matches
    With ws1.Cells(1, 1).CurrentRegion
        .AutoFilter 6, myInput
        If ws1.Cells(Rows.Count, 1).End(xlUp).Row > 1 Then
            .Range("A1:A2").EntireRow.Insert
            .Range("A1:V1").Offset(-2).Value2 = Evaluate("Column(" & .Address & ")")
            .Range("A1:V1").Offset(-1).Resize(1, 22).Value2 = Array(x, x, x, 7, x, _
            5, x, x, x, x, 1, 6, 2, 3, 4, 8, x, 9, 10, x, x, x)
            Sort_New_Order
            .Offset(1).Resize(.Rows.Count - 1, 10).Copy ws2.Range("A3")
            
            '.Offset(1).EntireRow.Delete   '<<*** uncomment this if you want to delete the copied data
            
            Sort_Old_Order
        Else
            MsgBox "No Items match " & myInput & " - exiting sub"
            .AutoFilter
            Exit Sub
        End If
        .AutoFilter
    End With
    ws2.Activate
    Application.ScreenUpdating = True
End Sub
Sub Sort_New_Order()
    ws1.Activate
    With ws1
        .Sort.SortFields.Clear
        .Cells(1, 1).CurrentRegion.Sort Key1:=Rows(2), Order1:=xlAscending, Orientation:=xlLeftToRight
    End With
End Sub
Sub Sort_Old_Order()
    With ws1
        .Sort.SortFields.Clear
        .Cells(1, 1).CurrentRegion.Sort Key1:=Rows(1), Order1:=xlAscending, Orientation:=xlLeftToRight
        .Rows("1:2").Delete
    End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,737
Messages
6,126,573
Members
449,318
Latest member
Son Raphon

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