Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm updating 2000 records and trying to make sure I don't
duplicateinformation. Is there a way I can use a command that will tell me if any of the cells in this row equal the same thing, then 'Yes"? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This formula should work for you:
=IF(COUNTIF($A$1:$A$2000,A1)1,"Yes","") You can place this in an adjacent column, then copy down. Another option would be to use Conditional Formatting to highlight any rows containing duplicates. Select your column of data, then choose Conditional Formatting from the Format Menu. Change "Cell Value Is" to "Formula Is" and enter: =COUNTIF($A$1:$A$2000,A1)1 Then set your format. HTH, Elkar HTH, Elkar "KRou" wrote: I'm updating 2000 records and trying to make sure I don't duplicateinformation. Is there a way I can use a command that will tell me if any of the cells in this row equal the same thing, then 'Yes"? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you Elkar!!
"Elkar" wrote: This formula should work for you: =IF(COUNTIF($A$1:$A$2000,A1)1,"Yes","") You can place this in an adjacent column, then copy down. Another option would be to use Conditional Formatting to highlight any rows containing duplicates. Select your column of data, then choose Conditional Formatting from the Format Menu. Change "Cell Value Is" to "Formula Is" and enter: =COUNTIF($A$1:$A$2000,A1)1 Then set your format. HTH, Elkar HTH, Elkar "KRou" wrote: I'm updating 2000 records and trying to make sure I don't duplicateinformation. Is there a way I can use a command that will tell me if any of the cells in this row equal the same thing, then 'Yes"? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
checking that cells have a value before the workbook will close | Excel Worksheet Functions | |||
want highlight when all cells in range are equal | Excel Worksheet Functions | |||
Determine which cells from a specific range equal a certain sum | Excel Worksheet Functions | |||
What cells in a array equal my value? | Excel Worksheet Functions | |||
Convert data type of cells to Text,Number,Date and Time | Excel Worksheet Functions |