Forum Discussion
FANIMOF
Sep 05, 2021Copper Contributor
Extract unique items from a list
Please help me, I want to use formula to extract numbers that has 4 or 5 at the beginning of a value. Thanks in advance. Example: 15677 16577 37588 46777 24689 57438 68495 SOLUTION: 4677...
- Sep 05, 2021
Since you are sorting and filtering numbers you could use
= SORT(FILTER(numbers, (numbers<60000)*(numbers>=40000)))
in Excel 365 or
= IFERROR( SMALL( IF( (numbers<60000)*(numbers>=40000), numbers ), 1+ROW()-MIN(ROW(numbers)) ), "")
in legacy systems.
PeterBartholomew1
Sep 05, 2021Silver Contributor
Since you are sorting and filtering numbers you could use
= SORT(FILTER(numbers, (numbers<60000)*(numbers>=40000)))
in Excel 365 or
= IFERROR(
SMALL(
IF(
(numbers<60000)*(numbers>=40000),
numbers
),
1+ROW()-MIN(ROW(numbers))
),
"")
in legacy systems.
- FANIMOFSep 10, 2021Copper ContributorTHANKS