Unique distinct list from a column sorted A to Z using array formula in excel
Question: How do I create a unique distinct list from a column sorted A to Z using array formula?
Answer:
Array formula in B15:
=INDEX(List, MATCH(MIN(IF(COUNTIF($B$14:B14, List)=0, 1, MAX((COUNTIF(List, "<"&List)+1)*2))*(COUNTIF(List, "<"&List)+1)), COUNTIF(List, "<"&List)+1, 0)) + CTRL + SHIFT + ENTER
Named range
List (B2:B12)
What is named ranges?
How to implement array formula to your workbook
Change the named range. If your list starts at, for example, F3. Change $B$14:B14 in the above formulas to F2:$F$2.
Download excel sample file for this tutorial.
Unique distinct list from a column sorted A to Z using array formula.xls
(Excel 97-2003 Workbook *.xls)
Functions in this article:
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
MATCH(lookup_value;lookup_array; [match_type]
Returns the relative position of an item in an array that matches a specified value
MIN(number1,[number2])
Returns the smallest number in a set of values. Ignores logical values and text
MAX(number1,[number2],)
Returns the largest value in a set of values. Ignores logical values and text.
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
This blog article is one out of thirteen articles on the same subject "unique".
How to extract a unique distinct list from a column in excel
Extract a unique distinct list from two columns using excel 2007 array formula
Extract a unique distinct list from three columns in excel
Extract distinct unique sorted year and month list from a date series in excel
Create a unique distinct list from a date range in excel
Unique values from multiple columns using array formulas
Extract a unique distinct list sorted from A-Z from range in excel
Sort a range by occurence using array formula in excel
Filter unique distinct values from two ranges combined in excel 2007
Create a unique list and sort by occurrances from large to small
Unique list to be created from a column where an adjacent column has text cell values
Create unique list from column where an adjacent column meets criteria
How to create a unique distinct list where other columns meet two criteria
Related posts:
- Filter a column and create a new unique list sorted from A to Z using array formula in excel
- Unique distinct list sorted based on occurrance in a column in excel
- Filter unique distinct list sorted based on sum of adjacent values using array formula in excel
- Create unique distinct list sorted based on text length using array formula in excel
- Extract a unique distinct list sorted from A-Z from range in excel
- Extract a unique distinct list from two columns using excel 2007 array formula
- Extract a unique distinct list sorted alphabetically removing blanks from a range in excel
- Create a drop down list containing only unique distinct alphabetically sorted text values using excel array formula
- Unique distinct values from multiple columns using array formula
- Create a unique distinct alphabetically sorted list, extracted from a column in excel


Leave a Reply