ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   remove duplicates except blanks (https://www.excelbanter.com/excel-worksheet-functions/250783-remove-duplicates-except-blanks.html)

jat

remove duplicates except blanks
 
is it possible to have a macro that removes duplicates except blanks in a
column?

jat


Per Jessen

remove duplicates except blanks
 
It is not a problem, but we need more information.

Which column do you want to compare, should both entries be deleted?

Regards,
Per

"jat" skrev i meddelelsen
...
is it possible to have a macro that removes duplicates except blanks in a
column?

jat



Jacob Skaria

remove duplicates except blanks
 
With data in ColA try the below macro which will use ColB as a helper column...

Sub Macro1()
Columns(1).Sort Key1:=Range("A2"), Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, Orientation:=xlTopToBottom
Columns(1).AdvancedFilter Action:=xlFilterCopy, _
CopyToRange:=Range("B1"), Unique:=True
Columns(1).Value = Columns(2).Value
Columns(2).Value = ""
End Sub

--
Jacob


"jat" wrote:

is it possible to have a macro that removes duplicates except blanks in a
column?

jat



All times are GMT +1. The time now is 01:44 AM.

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