mrzackmullins
New Member
- Joined
- Mar 27, 2018
- Messages
- 4
Hello,
I've found a few formulae to do close to what I'm looking to do. Short story: I have a report that pastes into an excel "tool" that then digests information and merges it into a word form via mail merge. It generates as many as 1000 forms per day, so it's important to get things correct on the first try.
The report generates names in this format LASTNAME, FIRSTNAME MI where a name looks like this Smith, John H
I have a cell that captures the last name perfectly as it stops at the comma, but the other cell manages to capture the First and MI as it backtracks to the comma (but I don't want the MI attached to the first name).
The formula that I'm looking to somehow modify to eliminate the MI is as follows.
=RIGHT(A1,LEN(A1)-FIND(",",A1,1))
I'm a bit new to the LEFT/RIGHT and TRIM functions as I don't regularly have a need to use them, but the Word Document needs to isolate just the first name so this is unfortunately necessary. Any suggestions?
I've found a few formulae to do close to what I'm looking to do. Short story: I have a report that pastes into an excel "tool" that then digests information and merges it into a word form via mail merge. It generates as many as 1000 forms per day, so it's important to get things correct on the first try.
The report generates names in this format LASTNAME, FIRSTNAME MI where a name looks like this Smith, John H
I have a cell that captures the last name perfectly as it stops at the comma, but the other cell manages to capture the First and MI as it backtracks to the comma (but I don't want the MI attached to the first name).
The formula that I'm looking to somehow modify to eliminate the MI is as follows.
=RIGHT(A1,LEN(A1)-FIND(",",A1,1))
I'm a bit new to the LEFT/RIGHT and TRIM functions as I don't regularly have a need to use them, but the Word Document needs to isolate just the first name so this is unfortunately necessary. Any suggestions?