Please help in creating this macro...

rcdgreat

New Member
Joined
Mar 17, 2011
Messages
13
I want to create a macro that scans column A for text equal to "Sample1" and then copy the row containing that value to another sheet after that it would scan again column a but this time its for text equal to "Sample2" and then again copy the row containing that value and pasting it to the end of the last row for "Sample1" then again for "Sample3", "Sample4" etc.

Thank you very much in advance. :)
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Welcome to MrExcel board....

Code:
Sub SampleCopy()
Dim LR As Long, i As Long, ALR As Long
'
LR = Range("A" & Rows.Count).End(xlUp).Row
For i = 1 To LR
    Set rFound = Columns(1).Find(What:="Sample" & i, LookIn:=xlValues, LookAt:= _
        xlPart, SearchOrder:=xlByRows, MatchCase:=False _
        , SearchFormat:=False)
    If rFound Is Nothing Then GoTo 0
    rFound.Activate
    ActiveCell.EntireRow.Copy
    Sheets("Sheet2").Activate
    ALR = Range("A" & Rows.Count).End(xlUp).Row + 1
    Range("A" & ALR).Select
    ActiveSheet.Paste
    Application.CutCopyMode = False
    Sheets("Sheet1").Activate
0
Next i
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,613
Messages
6,179,896
Members
452,948
Latest member
Dupuhini

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