Highlight Duplicate records using VBA Macro

ramzraja

New Member
Joined
Mar 12, 2016
Messages
6
Hi Experts,

I am trying to highlight the duplicate values which is present in the column F which has the string values.
I am new to VBA scripting, I am trying to use below code but it is not working.
Can i also know how to select all the values in column F even though if there are some NULL values in between.

Could you kindly guide me where i am going wrong

Code:
Sub DuplicateValuesFromColumn()
Dim Cell As Range
Dim rng As Range
Set rng = Range("F2").End(xlDown)
     rng.Select
        For Each Cell In rng
            If WorksheetFunction.CountIf(rng, Cell.Value) > 1 Then
                Cell.Interior.ColorIndex = 6
            End If
        Next
End Sub


Thanks,
Rameez Shaik
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Hey,

Your rng variable references incorrectly, try use this instead:

Code:
Set rng = Range("F2:F" & Cells(Rows.Count, "F").End(xlUp).Row)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,641
Messages
6,125,984
Members
449,276
Latest member
surendra75

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