Forum Discussion
alex2476
Mar 18, 2022Copper Contributor
Number Extraction Excel
I have a cell with theses values: 14.19, 14.36, 20.22, 22.23A I would like to have a formula that would extract each of the numbers before the periods and eliminate whatever values are doubl...
Starrysky1988
Mar 18, 2022Iron Contributor
Textsplit function is currently available to users running Beta Channel, Version 2203 (Build 15104.20004) or later on Windows and Version 16.60 (Build 22030400) or later on Mac.
=LET(a,MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1),b,CONCAT(IF(CODE(a)>64,"",a)),c,FLOOR(VALUE(TEXTSPLIT(b,", ")),1),TEXTJOIN(", ",,UNIQUE(INDEX(c,ROW(INDIRECT("1:"&SUM(FREQUENCY(c,c))))))))
=LET(a,MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1),b,CONCAT(IF(CODE(a)>64,"",a)),c,FLOOR(VALUE(TEXTSPLIT(b,", ")),1),TEXTJOIN(", ",,UNIQUE(INDEX(c,ROW(INDIRECT("1:"&SUM(FREQUENCY(c,c))))))))
- alex2476Mar 19, 2022Copper ContributorI don't know if i have the right version i just run the regular Office36. but ill take a look at that function.