PDA

View Full Version : Finding duplicate values



wongsh
07-28-2016, 07:16 PM
Hi,

Can anyone share with me a program to find the next duplicate value in a column and select the cell? Appreciate your help!!

jolivanes
08-02-2016, 06:57 PM
Is this what you mean?

Sub Find_Dup()
Columns(1).Find(Selection.Value, Selection, , 1).Select
End Sub