I have the following cells that I need to use in an Index(match
I cannot control the format, and ideally would like to resist using a helper column. The numbers vary in length and the blank spaces, "-" and leading zeros become an issue with Index(match.
The formula I am working with to adjust and want to use for the Match portion of the Index(match
=SUBSTITUTE(MID(Location@row, FIND("fz", Location@row) + 3, 10), "-", "")
Will give me these results which are not numbers but text, which is what I expected as this function does not return the results as a number.
So I thought that using =Value would fix that.
=Value(SUBSTITUTE(MID(Location@row, FIND("fz", Location@row) + 3, 10), "-", ""))
Which gets me these results where all but one cell fails with the #INVALID VALUE error.
So, am I just using VALUE incorrectly here or am I missing something else.