ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   HOW DO I REMOVE UNIQUE VALUES IN EXCEL? (https://www.excelbanter.com/excel-worksheet-functions/167757-how-do-i-remove-unique-values-excel.html)

Andy

HOW DO I REMOVE UNIQUE VALUES IN EXCEL?
 
Is there anyway to automatically remove unique entries on excel 07?

Peo Sjoblom

HOW DO I REMOVE UNIQUE VALUES IN EXCEL?
 
No, you can remove the duplicate ones, then you are left with the unique
ones and an move those wherever you want. In all other cases you would need
to use a filter

--


Regards,


Peo Sjoblom


"andy" wrote in message
...
Is there anyway to automatically remove unique entries on excel 07?




Gary''s Student

HOW DO I REMOVE UNIQUE VALUES IN EXCEL?
 
Let's say we have a list of entries in column A and want to remove the unique
ones. Enter and run this macro:

Sub dropum()
n = Cells(Rows.Count, "A").End(xlUp).Row
For i = n To 1 Step -1
v = Cells(i, 1).Value
k = Application.WorksheetFunction.CountIf(Range("A:A") , v)
'MsgBox (v & " " & k)
If k = 1 Then
Cells(i, 1).Delete
End If
Next
End Sub

--
Gary''s Student - gsnu200759


"andy" wrote:

Is there anyway to automatically remove unique entries on excel 07?


Teethless mama

HOW DO I REMOVE UNIQUE VALUES IN EXCEL?
 
Try this:

=IF(ISERR(SMALL(IF(COUNTIF(Rng,Rng)1,ROW(INDIRECT ("1:"&ROWS(Rng)))),ROWS($1:1))),"",INDEX(Rng,SMALL (IF(COUNTIF(Rng,Rng)1,ROW(INDIRECT("1:"&ROWS(Rng) ))),ROWS($1:1))))

ctrl+shift+enter, not just enter
copy down as far as needed


"andy" wrote:

Is there anyway to automatically remove unique entries on excel 07?



All times are GMT +1. The time now is 08:39 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com