Home |
Search |
Today's Posts |
#4
![]() |
|||
|
|||
![]() Try this for size, works for me. For uY = 1 To 6 'Spin thru 6 times to get them all Qq = Application.CountA(ActiveSheet.Range("B:B")) 'Get row count before beginning For oZ = 2 To Qq 'Main loop If Cells(oZ, 1) = Cells(oZ - 1, 1) Then 'Check for dups Cells(oZ, 1).Select 'Select the cell Selection.Delete Shift:=xlUp 'Delete Qq = Qq - 1 'Change loop criteria because cell gone End If 'End Next oZ 'Inside loop Next uY 'Outside loop -- grahammal ------------------------------------------------------------------------ grahammal's Profile: http://www.excelforum.com/member.php...o&userid=20336 View this thread: http://www.excelforum.com/showthread...hreadid=481963 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Deleting All Rows for Duplicate Entries Except Those With Most Items In Row | Excel Discussion (Misc queries) | |||
Deleting duplicate entries in an Excel list | Excel Worksheet Functions | |||
Deleting duplicate entries in Excel list | Excel Discussion (Misc queries) | |||
count duplicate (or, inversely, unique) entries, but based on a condition | Excel Worksheet Functions | |||
Deleting BOTH duplicate entries | Excel Discussion (Misc queries) |