I have a workflow that isolates part numbers from text files and it works 95% of time without issue. What I am running into is when the part number format changes and someone adds spaces instead of dashes or nothing at all.
I use the following to isolate the data in The first image. This removes the name of the part, leaving the part number only as seen in the second image for row 2. However Row 1 obviously cuts at the first space. Is there another way to do this that I am unaware or? I cant remove the spaces because some part numbers have letters in them and the the part numbers are different lengths
Left([Part Number1], FindString([Part Number1], ' '))