check duplicate file name and mark it with red!

newapa

Board Regular
Joined
Sep 13, 2012
Messages
69
Hi!
I was trying to check the file name in 2 column.
And if it duplicate it should be mark green. and if it not duplicate it should be mark red.
something like this.

a.xlm b.xlm<---- green
b.xlm a.xlm<---- green
c.xlm <-----red

but it marks every file name with gren. it should be about 60 rows with red.

Code:
Sub SubControll()
    Dim ws As Worksheet
    Dim i As Integer
    Set ws = ThisWorkbook.Sheets("Controll")
    
    For i = 2 To ws.range("B2").End(xlDown).row
       Exist ws, ws.Cells(i, 2)
    Next i
End Sub


Sub Exist(ws As Worksheet, Name As String)
    Dim i As Long
    
    For i = 2 To ws.range("A2").End(xlDown).row
        If Name = ws.Cells(i, 1) Then
            ws.Cells(i, 1).Interior.ColorIndex = 3
        Else
            ws.Cells(i, 1).Interior.ColorIndex = 4
        End If
    Next i
End Sub

thx in advance
 
Last edited:

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
You could use Conditional Formatting for that, but if you want a macro:

Code:
Sub Test()
    Dim ws As Worksheet
    Dim i As Long
    Set ws = ThisWorkbook.Sheets("Controll")
    For i = 2 To ws.Range("A" & ws.Rows.Count).End(xlUp).Row
        With ws.Cells(i, 1)
            If WorksheetFunction.CountIf(ws.Columns(2), .Value) Then
                .Interior.ColorIndex = 4
            Else
                .Interior.ColorIndex = 3
            End If
        End With
    Next i
End Sub
 
Upvote 0
This will work.

Code:
[FONT=Courier][COLOR=#00007F]Sub[/COLOR] checkCell()
Sheets("Controll").Select
Range("b2").Select
[COLOR=#00007F]Do[/COLOR] [COLOR=#00007F]Until[/COLOR] ActiveCell.Value = ""
[COLOR=#00007F]If[/COLOR] ActiveCell.Value = ActiveCell.Offset(0, 1) [COLOR=#00007F]Then[/COLOR]
ActiveCell.Interior.ColorIndex = 3
ActiveCell.Offset(0, 1).Interior.ColorIndex = 3
[COLOR=#00007F]Else[/COLOR]
ActiveCell.Interior.ColorIndex = 4
[COLOR=#00007F]End[/COLOR] [COLOR=#00007F]If[/COLOR]
ActiveCell.Offset(1).Select
[COLOR=#00007F]Loop[/COLOR]

[COLOR=#00007F]End[/COLOR] [COLOR=#00007F]Sub[/COLOR]
[/FONT]
 
Upvote 0
Hi guys!

Thx for u code.
but i have been struggling with this code the hole day now.
And i want to find out why, what is going wrong and how can i change it?
to get the code work.

i just wanted to learn so i know what i was missing till the next time i get into this situation.
 
Upvote 0
You weren't exiting the loop when a match was found. So unless the match was on the last row the cell would be coloured green. In addition you were checking each entry in column A against an entry in column B multiple times. So what may previously have been coloured red will change to green when it's not equal to Name on a subsequent pass.
 
Upvote 0
Thx Andrew!

i solved it.
i removed else
ws.Cells(i, 1).Interior.ColorIndex = 4
and put the
ws.Cells(i, 1).Interior.ColorIndex = 4 outsite the loop insted. and it's woring now.
:)


 
Upvote 0

Forum statistics

Threads
1,216,177
Messages
6,129,323
Members
449,501
Latest member
Amriddin

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