Hi Mike,
Try something like:
'==========>>
Public Sub Tester()
Dim rng As Range
Dim rCell As Range
Dim copyRng As Range
Dim destRng As Range
Dim WB As Workbook
Dim SH As Worksheet
Dim CalcMode As Long
Dim arr As Variant
Set WB = ActiveWorkbook '<<=== CHANGE
Set SH = WB.Sheets("Sheet1") '<<=== CHANGE
Set rng = SH.Range("A1:A100") '<<=== CHANGE
Set destRng = WB.Sheets("Sheet2").Range("A2") '<<=== CHANGE
arr = Array("Anne", "Jon", "Kate") '<<===
CHANGE
With Application
CalcMode = .Calculation
.Calculation = xlCalculationManual
.ScreenUpdating = False
End With
For Each rCell In rng.Cells
If Not IsError(Application.Match(rCell.Value, arr, 0)) Then
If copyRng Is Nothing Then
Set copyRng = rCell
Else
Set copyRng = Union(rCell, copyRng)
End If
End If
Next rCell
If Not copyRng Is Nothing Then
copyRng.EntireRow.Copy Destination:=destRng
Else
'nothing found, do nothing
End If
With Application
.Calculation = CalcMode
.ScreenUpdating = True
End With
End Sub
'<<==========
---
Regards,
Norman
"mike" <mike@discussions.microsoft.com> wrote in message
news:006C6787-73C2-420E-A56C-F366BCF5E243@microsoft.com...
> hello,
>
> i am writing a macro to copy rows which contain certain words.
> i am using a macro which i used before to highlight the rows where the
> word
> appears.
> but i'm not sure about the code i should use now.
> i welcome your comments
> mike
Bookmarks