highlight rows with a macro

aminexcel

Board Regular
Joined
May 2, 2009
Messages
63
i have all countries in column A in sheet 1 and some countries in column A in sheet 2. how can i highlight same countries between two sheets from column A to Z in sheet 1
for example in sheet 1 column A is:
Albania
Algeria
Bangladesh
Belarus
Belgium
Belize
Benin
Bhutan
Bolivia
Botswana
Brazil
Bulgaria
Burundi
...

and in sheet 2 column A is
Algeria
Belarus
Belgium
Benin
Bhutan
Bolivia
...

thank a lot
 
Try

Code:
Sub Cmpare()
Dim i As Long, LR As Long
With Sheets("Sheet1")
    LR = .Range("A" & Rows.Count).End(xlUp).Row
    For i = 1 To LR
        If IsNumeric(Application.Match(.Range("A" & i).Value, Sheets("Sheet2").Columns("A"), 0)) Then .Rows(i).Interior.ColorIndex = 6
    Next i
End With
End Sub
 
Upvote 0
thanks a lot for your attention,
your code is correct but it could not solve my problem, because
i got countries data from different sources that nominate countries with different roles.
for example Word Bank say "korea, dem. rep." and IMF say "korea, democratic people's republic of" and United Nations say "korea, dem. people's republic of (north korea)". this problem repeats for many other countries. can i have a macro that can find common countries in two sheets without considering they suffix or prefix


sincerely yours
 
Upvote 0
Or perhaps...

Code:
Sub Cmpare()
Dim i As Long, LR As Long, Found As Range
With Sheets("Sheet1")
    LR = .Range("A" & Rows.Count).End(xlUp).Row
    For i = 1 To LR
        Set Found = Sheets("Sheet2").Columns("A").Find(what:=Left(.Range("A" & i).Value, 5), LookIn:=xlValues, lookat:=xlPart)
        If Not Found Is Nothing Then Rows(i).Interior.ColorIndex = 6
    Next i
End With
End Sub
 
Upvote 0
Missed a dot ... try

Rich (BB code):
Sub Cmpare()
Dim i As Long, LR As Long, Found As Range
With Sheets("Sheet1")
    LR = .Range("A" & Rows.Count).End(xlUp).Row
    For i = 1 To LR
        Set Found = Sheets("Sheet2").Columns("A").Find(what:=Left(.Range("A" & i).Value, 5), LookIn:=xlValues, lookat:=xlPart)
        If Not Found Is Nothing Then .Rows(i).Interior.ColorIndex = 6
    Next i
End With
End Sub
 
Upvote 0
if is possible, i have an other question !
how can i export highlighted rows to a new sheet with name "selected" with this macro
 
Upvote 0
Try

Code:
Sub Cmpare()
Dim i As Long, LR As Long, Found As Range, j As Long
Sheets.Add
On Error Resume Next
ActiveSheet.Name = "Selected"
On Error GoTo 0
With Sheets("Sheet1")
    LR = .Range("A" & Rows.Count).End(xlUp).Row
    For i = 1 To LR
        Set Found = Sheets("Sheet2").Columns("A").Find(what:=Left(.Range("A" & i).Value, 5), LookIn:=xlValues, lookat:=xlPart)
        If Not Found Is Nothing Then
            j = j + 1
            .Rows(i).Copy Destination:=ActiveSheet.Range("A" & j)
            .Rows(i).Interior.ColorIndex = 6
        End If
    Next i
End With
Application.CutCopyMode = False
End Sub
 
Upvote 0

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