VBA Find, Copy, paste

humility36

New Member
Joined
Dec 16, 2019
Messages
7
Office Version
  1. 2016
Platform
  1. Windows
Good Morning Friends,

I have an employee training spread sheet that lists out the employee and all the areas that they are trained in. However, the row is super long because their are a lot of areas across different departments that they could be trained in. My row currently goes all the way to BB so I have to scroll a long way to see what they are trained in and I'm only interested in what they are trained in. I have a legend the defines their training status: X=trained - NT=Needs test - NA =Needs assessment - S=safety / re-certify

I want to write some vba code that could "look" for any of these values in the cell and then copy the value and the cell to the right (job) and paste it in a list form.
CURRENT STATE - this is a sample of how my employee sheet looks like now.

ABCDEGHIJKLMN
1IDFirst NameLast NameBidShifttrainedjobtrainedjobtrainedjobtrainedjob
212345JohnDoeauditordayXforkliftNAloadingcloserNTde-pallet
312345JohnDoeauditordaysmall caseXDC to DCModsXbreakpack
4

The VBA code will "look" for any of the 4 values in the cell and simply
1. copy the cell value and the cell to the right and past it in the same worksheet just down some rows 27 - 31
2. transpose and paste ONCE the basic employee info in rows 20 -25

FUTURE STATE
ABCD
20ID12345
21First NameJohnn
23Last NameDoe
24Bidauditor
25Shiftday
26
27ForkliftX
29loadingNA
29De-palletNT
30DC to DCX
31breakpackX

This seems very simple to me, but I can't seem to get it right. Any help would be super appreciated and I hope this is clear and easy to understand. Since there is only 4 values that could be in any of the cells I thought maybe these values could be defined in the VBA. Because there might be multiple rows for the employee I also thought I would be to create a loop to search each of the rows. I don't know VBA code enough to write it out. Thanks everyone in advance for taking a look and helping out.

Best Regards,
- Humility36
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Book1
ABCDEFGHIJKLMN
1IDFirst NameLast NameBidShifttrainedjobtrainedjobtrainedjobtrainedjob
212345JohnDoeauditordayXforkliftNAloadingcloserNTde-pallet
312345JohnDoeauditordaysmall caseXDC to DCModsXbreakpack
4
19
2012345
21John
22Doe
23auditor
24day
25
26
27forkliftX
28loadingNA
29de-palletNT
30DC to DCX
31breakpackX
Sheet

Is column G the first column "trained"?
Do you only have one employee in rows 2 to 19 or can there be several employees?

Try this:

VBA Code:
Sub copy_paste()
  Dim i As Long, j As Long, k As Long
  k = 27
  For i = 2 To 19
    If Cells(i, "A") = Range("B20") And Cells(i, "B") = Range("B21") And _
       Cells(i, "C") = Range("B22") And Cells(i, "D") = Range("B23") And _
       Cells(i, "E") = Range("B24") Then
      For j = Columns("G").Column To Cells(i, Columns.Count).End(xlToLeft).Column Step 2
        Select Case Cells(i, j)
          Case "X", "NT", "NA", "S"
            Cells(k, "C") = Cells(i, j + 1)
            Cells(k, "D") = Cells(i, j)
            k = k + 1
        End Select
      Next
    End If
  Next
End Sub
 
Upvote 0
Good Morning @DanteAmor ,

Thank you for your reply. To answer your questions:

Is column G the first column "trained"?
- yes. Column G is the first column named trained

Do you only have one employee in rows 2 to 19 or can there be several employees?
- yes. This will be 1 employee that would span rows 2 - 5 depending on what department they are trained in.

I've applied and tested your code and it partially works. Definitely on the right track here. The only issue that I'm having is that after the code runs and captures the info, it errors out instead of ends.

I'm getting a run-time error 13 - Type Mismatch -- When I click on debug to see where it's getting hung up on the line
- Case "X", "NT", "NA", "S"

Other than that, It seems to run a little slow, would it be faster to define the range? Somehow write it to search columns G through BB? When I run the code I see this flashing message that says "Calculating(8 threads) 70% . I timed it just to see how long it took for the code to run and it was 1 min 6 seconds.

Thanks again for your help with this! This is going to be super helpful and save me a lot of time.

As I'm learning to vba code, I pasted your code below and made comments of what I think the code is doing. I'm still a novice at VBA, but it's exercises like this that really help me learn. Please see my comments and let me know if I'm on the right track. As I think about the error, is there a way to put an error trap that says "if there is an error, end the code." The code seems to go all the way through the rows, it just doesn't find anymore of the variables and doesn't know what to do, so it pukes.

VBA Code:
Sub copy_paste()
  Dim i As Long, j As Long, k As Long
  k = 27 'This is the starting row of where the info will be pasted
  For i = 2 To 19 ' This is the row range that will be searched
    If Cells(i, "A") = Range("B20") And Cells(i, "B") = Range("B21") And _ ' This is an if statement that checks to make sure the info in columns A through E match the info in B20 - B24
       Cells(i, "C") = Range("B22") And Cells(i, "D") = Range("B23") And _ 
       Cells(i, "E") = Range("B24") Then
      For j = Columns("G").Column To Cells(i, Columns.Count).End(xlToLeft).Column Step 2 ' This is a loop that nest a case statement that says look for these variables, if you find them then write them in columns C & D.
        Select Case Cells(i, j)
          Case "X", "NT", "NA", "S"
            Cells(k, "C") = Cells(i, j + 1)
            Cells(k, "D") = Cells(i, j)
            k = k + 1
        End Select
      Next
    End If
  Next
End Sub

-Humility36
 
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,240
Members
452,621
Latest member
Laura_PinksBTHFT

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