Forum Discussion
vaishali_12
Sep 06, 2023Copper Contributor
Separating text and numeric
Hey, how can i easily separate text and numeric value from the rows in excel?
PeterBartholomew1
Sep 06, 2023Silver Contributor
If you use 365, a formulae which filter text and numeric cells are
= FILTER(range, ISTEXT(range))
= FILTER(range, ISNUMBER(range))
Another tactic that could be useful is simply to sort the range, so placing numbers before text.
= SORT(range)