How to create a unique list using conditional formatting in excel 2007
You may have tried to create a unique distinct list, using conditional formatting with excel 2007, merging duplicates into one distinct value. The problem is that it only highlights all values occurring only once. See picture.
If you highlight all duplicates, excel 2007 highlights all values occurring twice or more. See picture.
But to be able to delete values occuring the second time or more, we need to use another conditional formatting formula. So I thought why not create a conditonal formatting formula that highlights only the cells that needs to be deleted. The end result is a unique (distinct) list. Here is how to do that:
Highlighting duplicate values occuring the second time or more:
- Select the range (C2:C12)
- Click "Home" tab on the ribbon
- Click "Conditional formatting"
- Click "New rule..."
- Click "Use a formula to determine which cells to format"
- Click "Format values where this formual is true" window.
- Type =IF(COUNT(IF($C$2:$C2=$C2, 1, ""))>1, TRUE, FALSE)
- Click OK!
Sorting duplicates to bottom
- Right click on any cell in range C2:C12
- Click "Sort"
- Click "Custom sort..."
- Select "On bottom" in the order column
- Click OK!
Select highlighted values and press "Delete" on keyboard
Download excel example file.
highlight-duplicate-values.xls
(Excel 97-2003 Workbook *.xls)
Functions in this article:
IF(logical_test;[value_if:true];[value_if_false])
Checks whether a condition is met, and returns one value if TRUE, and another value if FALSE
COUNT(value1;[value2])
Counts the number of cells in a range that contain numbers
Related posts:
- Highlight duplicates using conditional formatting in excel
- Create a dynamic border to your list using excel conditional formatting
- Highlight duplicates where adjacent cell value meets criteria using conditional formatting in excel
- Highlight the second or more duplicates in two lists using conditional formatting in excel
- Highlight unique values and unique distinct values in a range using conditional formatting in excel
- Highlight dates within a date range using conditional formatting
- Prevent duplicates using dynamic conditional formatting in excel
- Color every second row using dynamic conditional formatting in excel
- Highlight smallest duplicate value in a column using conditional formatting in excel
- Highlight duplicates where an adjacent column is in a date interval using conditional formatting in excel






Leave a Reply