For starters you should check to see just how consistent the names are.
Does each name have "LASTNAME, FIRSTNAME" or do some have middle names or
middle initials, are some first name last name, do those use a "," how
about those that may only have a first or last name.
If they are consistent, not as big a problem. If they are inconsistent,
it is a larger problem.
For starters you should check to see just how consistent the names are.
Does each name have "LASTNAME, FIRSTNAME" or do some have middle names or
middle initials, are some first name last name, do those use a "," how
about those that may only have a first or last name.
If they are consistent, not as big a problem. If they are
inconsistent, it is a larger problem.
John, you can use the following calculation expressions below. After running
the queries make sure you check the results where the fullname field has no
comma (,) since that will be the exception to the rule.
'Extract Lastname for given field types like "Lastname, Firstname"
=Trim(Left([Field], Instr([Field], ",")-1))
'Extract Firstname for given field types like "Lastname, Firstname"
=Trim(Mid([Field], Instr([Field], ",")+1))
John, you can use the following calculation expressions below. After running
the queries make sure you check the results where the fullname field has no
comma (,) since that will be the exception to the rule.
'Extract Lastname for given field types like "Lastname, Firstname"
=Trim(Left([Field], Instr([Field], ",")-1))
'Extract Firstname for given field types like "Lastname, Firstname"
=Trim(Mid([Field], Instr([Field], ",")+1))
Left
-Randy
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.