Hi,
I have the following formula which looks for a specific string and then pulls data found to the right of the found string:
=MID(A1,FIND("ABC",A1)+3,LEN(A1))
The number which follows ABC is 6 numbers long and may have a space or not (ABC 000000 or ABC000000) .
Is it possible to to only return the 6 or 7 numbers after the ABC prefix and nothing else?
Thanks
=TRIM(MID(A1,FIND("ABC",A1
gowflow