How to remove common values between two columns
Question: How do i remove common values between two lists?

Answer: The solution in this article, removes common values and the original values, as seen on the picture below. To create a unique list from two columns or two cell ranges, check this article out: Create unique list from two columns

Excel 2007 array formula in cell D1:
Download excel sample file for this tutorial.
remove-common-values-between-two-columns.xlsx
(Excel 2007 Workbook *.xlsx)
Functions in this tutorial:
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
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
VALUE(text) converts a text string that represents a number to a number
SMALL(array, k) returns the k-th smallest number in this data set.
ROW(reference)
returns the row number of a reference
COLUMN(reference)
returns the column number of a reference
This blog article is one out of five articles on the same subject.
- Filter values existing in range 1 but not in range 2 using array formula in excel
- Filter common values between two ranges using array formula in excel
- How to remove common values between two columns
- How to find common values from two lists
- Highlight common values in two lists using conditional formatting in excel






Leave a Reply