Forum Discussion
Bryanh6288
Oct 02, 2023Copper Contributor
Extract a specific number from a line of text in a cell
<span;>I need to extract a number from a line of text in cell C3 to a different cell H3. For example text in C3 is: ANGLE, 1-1/2" X 1-1/2" X 1/8" X 60",SP(GALVANIZED) <span;>I need to extract only t...
HansVogelaar
Oct 02, 2023MVP
In H3:
=LET(Parts, TEXTSPLIT(INDEX(TEXTSPLIT(C3, ","), 2), " "), Num, COUNTA(Parts), Last, INDEX(Parts, Num), --SUBSTITUTE(Last, """", ""))