Use StrConv() in an Update query.
1. Create a query using this table.
2. Change it to an Update query (Update on Query menu.)
Access adds an Update row to the grid.
3. In the Update row under the Surname field, enter:
StrConv([Surname], 3)
4. Do the same thing for the other fields that need converting.
5. Run the query.
You will have some manual cleaning up to do.
BTW, that converts the first letter of each word to upper case.
If you just wanted the first letter of the field, use:
Left([Surname],1) & StrConv(Mid([Surname], 2, 2)
--
Allen Browne - Microsoft MVP. Perth, Western Australia
Reply to group, rather than allenbrowne at mvps dot org.
Steve S said:
I have imported a table of names, addresses, etc that are all upper case.
I
have converted everything to lowercase but now need to change the first
letter of each string to uppercase. How???
steve