Hello
I need to derive sorted unique values from column. For the purpose I use the following formula from cell A3 below onwards entered as an array formula:
INDEX(List, MATCH(0, IF(MAX(NOT(COUNTIF(A$2:$A2, List))*(COUNTIF(List, ">"&List)+1))=(COUNTIF(List, ">"&List)+1), 0, 1), 0))
This formula gives me the desired results.
However, now i want to derive sorted unique values which contain a string e.g. ABC
If the column values are:
ABC-001
DEF-001
GHI-003
ABC-001
ABC-002
GHI-008
I want to derive only the values:
ABC-001
ABC-002
Could anyone please help?
Thanks
I need to derive sorted unique values from column. For the purpose I use the following formula from cell A3 below onwards entered as an array formula:
INDEX(List, MATCH(0, IF(MAX(NOT(COUNTIF(A$2:$A2, List))*(COUNTIF(List, ">"&List)+1))=(COUNTIF(List, ">"&List)+1), 0, 1), 0))
This formula gives me the desired results.
However, now i want to derive sorted unique values which contain a string e.g. ABC
If the column values are:
ABC-001
DEF-001
GHI-003
ABC-001
ABC-002
GHI-008
I want to derive only the values:
ABC-001
ABC-002
Could anyone please help?
Thanks