I need some advice on how to get rid of a bunch of spaces in name field.
There are 250,000 records and the name field is a mess. The format is FIRST MI LAST with no comma's. The problem is that there is almost always multiple spaces between the name parts. It looks like this:
JOHN M SMITH
SALLY JONES
FRED M JOHNSON
There are no preceding or trailing spaces. I thought of using find/replace, but I can't delete all spaces. . still need a space between the name parts.
In the end, I'm going to parse out fist MI last into seperate fields, so maybe all these spaces don't matter. Trouble is, I don't know how to use Trim with all those spaces there.
Thanks as always for any help!
There are 250,000 records and the name field is a mess. The format is FIRST MI LAST with no comma's. The problem is that there is almost always multiple spaces between the name parts. It looks like this:
JOHN M SMITH
SALLY JONES
FRED M JOHNSON
There are no preceding or trailing spaces. I thought of using find/replace, but I can't delete all spaces. . still need a space between the name parts.
In the end, I'm going to parse out fist MI last into seperate fields, so maybe all these spaces don't matter. Trouble is, I don't know how to use Trim with all those spaces there.
Thanks as always for any help!