Open a new query window in design view.
Add the table with the field of interest
add the field LNAME
in the next box over add the following
LnameProperCase: StrConv([LNAME], vbProperCase)
run the query to see the results.
If after you see what the code does to the fields, and you like it, and
you want to change the stored data.
Then
change the query type to update
copy the code: StrConv([LNAME], vbProperCase) into the updateto box
under the LNAME field, run the query.
Ed Warren
Thank you for your answers.
I just can't figure where to write it.
I made a querie and wrote it at the SQL view but wasn;t accepted.
Please tell me where to write it. What steps should I do?
Thank You
Dimitris
Dimitris,
Just an minor addition to Ed's correct response. It's the best you
can do for automating the solution to your poblem
Be aware though, that names like...
MCCARTHY
would come out as
Mccarthy
hth
Al Camp
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions
Hello I have a table in which there is a field LNAME in which last
names have been entered with capitol letters. For example: SMITH.
I want to change them to small letters except the first one, so it
will become: Smith
Is it possible?
Thank you
Dimitris