<VBA> Looping and Copying

ShadowRecon10

New Member
Joined
Aug 5, 2017
Messages
3
Hello All,

I've been trying to figure out how to write a VBA macro to loop through the cells of a column, matching cell(s) with a criteria, copy a cell from that row to a different sheet, and then print a specified selection.

This table is located on Sheet "Data". I need to loop through Column C "Manager". When looping through C, I am looking for instances of "Thomas,Kelly". When an instance of "Thomas,Kelly" is found, I want to copy the User cell and paste it into Cell B6 on Sheet "Report". My Report sheet will update other data based on the User pasted into it, then once I do my selection print on the Report Sheet, I want the loop to continue back on the "Data" sheet until the next instance of "Thomas,Kelly" and do the same thing, copy the User cell to Report B6, do my update and print, and continue on until the search gets to the last row.

UserNameManager
john1Herbert,JohnThomas,Kelly
joejoe20Johnson,JosphBlanton,Joe
willy5Rose,WilsonThomas,Kelly
ronny12Wilson,RonnyMelody,Sarah

<tbody>
</tbody>


Any and all help would be appreciated. I've been racking my brain on it for hours, but can't figure out how to do it.

Thank you in advance for the help.
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Try, for the printing you can start the macro recorder and then select the print options you want then stop the recorder and then replace the print line I have so that it print how you want it.

Code:
Sub copyandprint()
Dim lr As Long
Dim wsd As Worksheet
Dim wsr As Worksheet
Dim myfound As Boolean
Set wsd = Sheets("Data")
Set wsr = Sheets("Report")
myfound = False
lr = wsd.Cells(Rows.Count, 3).End(xlUp).Row
manager = InputBox("Enter manager name")
For x = 2 To lr
    If UCase(wsd.Cells(x, 3)) = UCase(manager) Then
        wsd.Cells(x, 1).Copy wsr.Range("B6")
        wsr.PrintOut 'Change to match the print criteria you want
        myfound = True
    End If
        
Next x
If myfound = False Then MsgBox "Manager not found"

End Sub
 
Upvote 0
Thank you.

I was able to add it to my coding and it does exactly what I need it to do. It looks so simple, can't believe that I couldn't figure that out. Guess I have a lot to learn/study.
 
Upvote 0

Forum statistics

Threads
1,215,143
Messages
6,123,275
Members
449,093
Latest member
Vincent Khandagale

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