I have a Notes column that often includes between one and five 9-digit number strings somewhere within the text. In Excel, I used the formula below to pull the numbers from the text into one or more subsequent columns.
=LET(arr,TEXTSPLIT(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(N84,"'"," "),";"," "),","," ")," "),FILTER(arr,ISNUMBER(-arr)*(LEN(arr)=9)))
Results look like this
Since the LET function does not exist in Smartsheet, how can I reproduce this result?