![]() |
compare cells in a column for duplicates
As I enter in company names into column B in my worksheet I would like a
macro to automaticlly check to see if I have a duplicate name already entered and if so show it in a pop-up windows as an error. Now I thought a Loop If statement would work however if memory serves me correct I would have to enter all the names in my statement. Any assistance would be appreciated. Thanks |
compare cells in a column for duplicates
I think macro is good option but you can achieve something simiar with
conditional formatting. Essentially, the conditional formatting will highlight the entered name, if it has been already entered. Select the range where you will be entering the data goto Format--Conditional Formatting From the drop down select 'Formula Is' Enter the formula as =IF(COUNTIF($A$1:$A$20,A5)1,1,0) Set the color pattern Here you can change the range from A1:A20 to your actual range. HTH, -- Pranav Vaidya VBA Developer PN, MH-India If you think my answer is useful, please rate this post as an ANSWER!! "Mekinnik" wrote: As I enter in company names into column B in my worksheet I would like a macro to automaticlly check to see if I have a duplicate name already entered and if so show it in a pop-up windows as an error. Now I thought a Loop If statement would work however if memory serves me correct I would have to enter all the names in my statement. Any assistance would be appreciated. Thanks |
compare cells in a column for duplicates
Take a look at this page:
http://www.cpearson.com/Excel/Duplicates.aspx and this page http://www.cpearson.com/excel/NoDupEntry.aspx -- Regards, Tom Ogilvy "Mekinnik" wrote: As I enter in company names into column B in my worksheet I would like a macro to automaticlly check to see if I have a duplicate name already entered and if so show it in a pop-up windows as an error. Now I thought a Loop If statement would work however if memory serves me correct I would have to enter all the names in my statement. Any assistance would be appreciated. Thanks |
All times are GMT +1. The time now is 10:30 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com