Highlight unique distinct values in two ranges combined using conditional formatting in excel
Conditional formatting formula in B2:E5:
Conditional formatting formula in B7:E10:
Named ranges
tbl (B2:E5)
tbl1 (B7:E10)
What is named ranges?
Download excel example file.
highlight-unique-distinct-values-in-two-ranges-combined.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
ROW(reference)
returns the row number of a reference
COUNTIF(range,criteria)
Counts the number of cells within a range that meet the given condition
INDEX(array,row_num,[column_num])
Returns a value or reference of the cell at the intersection of a particular row and column, in a given range
MAX(number1,[number2],)
Returns the largest value in a set of values. Ignores logical values and text.
MATCH(lookup_value;lookup_array; [match_type]
Returns the relative position of an item in an array that matches a specified value
COLUMN(reference) Returns the column number of a reference
MIN(number1,[number2])
Returns the smallest number in a set of values. Ignores logical values and text
Related blog posts
- Highlight duplicate values in two ranges combined using conditional formatting in excel
- Highlight unique values and unique distinct values in a range using conditional formatting in excel
- Highlight duplicate values in a range using conditional formatting in excel
- Filter unique distinct values from two ranges combined in excel 2007
- Count unique values and unique distinct values in two ranges combined







Leave a Reply