![]() |
Compare columns for dupes
Hi all,
This is probably something very simple. I have two columns that I need to compare for duplicates. So I have columns A and B, I need a macro that will compare the data in column A with the data in column B then copy any duplicates to column C. Can someone provide some code? Thanks. -B |
Compare columns for dupes
in C1
=if(countif(A:A,B1)0,B1,"") then drag fill down the column. -- Regards, Tom Ogilvy "Martin" wrote: Hi all, This is probably something very simple. I have two columns that I need to compare for duplicates. So I have columns A and B, I need a macro that will compare the data in column A with the data in column B then copy any duplicates to column C. Can someone provide some code? Thanks. -B |
Compare columns for dupes
Thanks I found this code on Microsoft's website and it seems to work,
however, I'd like to add a regex procedure that would match wildcards, etc. If someone can provide an example, I would appreciate it. Sub Find_Matches() Dim CompareRange As Variant, x As Variant, y As Variant Set CompareRange = Range("C1:C5") For Each x In Selection For Each y In CompareRange If x = y Then x.Offset(0, 1) = x Next y Next x End Sub -B "Tom Ogilvy" wrote in message ... in C1 =if(countif(A:A,B1)0,B1,"") then drag fill down the column. -- Regards, Tom Ogilvy "Martin" wrote: Hi all, This is probably something very simple. I have two columns that I need to compare for duplicates. So I have columns A and B, I need a macro that will compare the data in column A with the data in column B then copy any duplicates to column C. Can someone provide some code? Thanks. -B |
Compare columns for dupes
Search Google groups for regex and group *excel*
-- regards, Tom Ogilvy "Martin" wrote in message ... Thanks I found this code on Microsoft's website and it seems to work, however, I'd like to add a regex procedure that would match wildcards, etc. If someone can provide an example, I would appreciate it. Sub Find_Matches() Dim CompareRange As Variant, x As Variant, y As Variant Set CompareRange = Range("C1:C5") For Each x In Selection For Each y In CompareRange If x = y Then x.Offset(0, 1) = x Next y Next x End Sub -B "Tom Ogilvy" wrote in message ... in C1 =if(countif(A:A,B1)0,B1,"") then drag fill down the column. -- Regards, Tom Ogilvy "Martin" wrote: Hi all, This is probably something very simple. I have two columns that I need to compare for duplicates. So I have columns A and B, I need a macro that will compare the data in column A with the data in column B then copy any duplicates to column C. Can someone provide some code? Thanks. -B |
All times are GMT +1. The time now is 11:25 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com