CreativeUsername
Board Regular
- Joined
- Mar 11, 2017
- Messages
- 52
Hi,
I have a HUGE table of data and one column is all kinds of names that need to be parsed. I found two common types of arrangement.
Last Name Mid initial first name (IE: Doe P Jane), the reverse order of that (Jane P Doe), and some variant that puts the mid initial at the end (Doe Jane P or Jane Doe P)
I'd like to be able to sort the data set to focus on all the ones where there is a single letter surrounded by spaces.
I was trying to work with =MID(Table1[@LASTNAME],SEARCH(" ",Table1[@LASTNAME])+1,2)" BUT this cuts out the first 2 letters of the middle word. (sometimes the names are full like Jane Phyllis Doe).
It would help me move through the data faster if I could filter to all items with a stand alone letter.
Any Help would be appreciated.
I have a HUGE table of data and one column is all kinds of names that need to be parsed. I found two common types of arrangement.
Last Name Mid initial first name (IE: Doe P Jane), the reverse order of that (Jane P Doe), and some variant that puts the mid initial at the end (Doe Jane P or Jane Doe P)
I'd like to be able to sort the data set to focus on all the ones where there is a single letter surrounded by spaces.
I was trying to work with =MID(Table1[@LASTNAME],SEARCH(" ",Table1[@LASTNAME])+1,2)" BUT this cuts out the first 2 letters of the middle word. (sometimes the names are full like Jane Phyllis Doe).
It would help me move through the data faster if I could filter to all items with a stand alone letter.
Any Help would be appreciated.