Thanks for reading my post.
A co-worker has asked me to help her take a mailing list that has been kept in an Excel workbook and convert it into an Access DB. Importing the data is no problem. The first problem is that the names, First and Last, were entered in one column. The second problem is that probably 80% of them were written in upper case. What I would like to end up with is a FirstName and LastName field and that the names start with an upper case letter followed by all lower case. I was able to parse out the first and last names in a query as follows: FirstName: Trim(Left([Name],InStr([Name]," ")-1)) LastName: Trim(Mid([Name],InStr([Name]," ")+1,1000)) but can anyone help with getting the case structure correct?
Thanks for any help.
A co-worker has asked me to help her take a mailing list that has been kept in an Excel workbook and convert it into an Access DB. Importing the data is no problem. The first problem is that the names, First and Last, were entered in one column. The second problem is that probably 80% of them were written in upper case. What I would like to end up with is a FirstName and LastName field and that the names start with an upper case letter followed by all lower case. I was able to parse out the first and last names in a query as follows: FirstName: Trim(Left([Name],InStr([Name]," ")-1)) LastName: Trim(Mid([Name],InStr([Name]," ")+1,1000)) but can anyone help with getting the case structure correct?
Thanks for any help.