Seeking to extract a word from a text with 17 characters

I have split an OCRtext with SPLIT into a LIST

Column name: Split Vin Info
FORMULA:

SPLIT([Vin Information], "
")

I then have created multiple references to the list with

Column name example: Split 9
**FORMULA:**INDEX([Split Vin info], 9)

I have a specific word within a the original text that has 17 characters, so i used these breakouts to check which one of these indexโ€™es has 17 characters to use that word.

FInal Formula below for the text that should contain 17 characters

Column name is: โ€œVin Number Splitโ€ and formula is below. It says the formula looks right but i am doing something wrong?

ifs(
LEN([Split 7]) = 17, [Split 7],
LEN([Split 8]) = 17, [Split 8],
LEN([Split 9]) = 17, [Split 9],
LEN([Split 10]) = 17, [Split 10] ,
)

OR

Is there another way to extract the word that has a character count of 17 within a large text string?

3X_a_3_a3fbd76116ef59b8943041df19d3003172e60773.png

0 4 219
4 REPLIES 4

Could you please mention what problem you are facing with the expression, even though formula evaluates okay?

The data for Vin Number appears blank on form submission. It should have referenced the final formula โ€œVin Number Splitโ€

Are all the columns in the sequence before [Vin Number Split] behaving as expected?

Meaning is the [Split Vin Info] properly splitting the string and are [Split 9] โ€ฆ[Split 10] having the expected indexed list elements?

I may need to add more split cells, i see the the ones i listed are prepolulating but not the 17 character, i will get back to you after i add a few more

Top Labels in this Space