Question: How do I filter values that exists in all three columns?

Answer:

filter-common-values-in-three-columns

Formula in A14:

=INDEX(List1, MATCH(0, COUNTIF($A$13:A13, List1)+IF(IF(COUNTIF(List2, List1)>0, 1, 0)+IF(COUNTIF(List3, List1)>0, 1, 0)=2, 0, 1), 0)) + CTRL + SHIFT + ENTER copied down as far as necessary.

Named ranges
List1 (A2:A11)
List2 (B2:B10)
List3 (C2:C11)
What is named ranges?

Download excel example file.
Common values in three columns.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

MATCH(lookup_value;lookup_array; [match_type]
Returns the relative position of an item in an array that matches a specified value

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

COUNTIF(range,criteria)
Counts the number of cells within a range that meet the given condition

  • Share/Bookmark

Related posts:

  1. Extract largest values from two columns using array formula in excel
  2. Count unique distinct values in three columns combined in excel
  3. Filter duplicates from two columns combined and sort from A to Z using array formula in excel
  4. Comparing two columns and sum unique values using array formula in excel
  5. Count matching cell values in two columns in excel
  6. Merge three columns into one list in excel
  7. How to filter values between 0.5 and 1.5 from two columns in excel 2007
  8. Extract a list of duplicates from three columns combined using array formula in excel
  9. Filter common values between two ranges using array formula in excel
  10. Identify missing values in two columns using excel formula