How do I change the first letter of every word to a capital

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a text field with titles in it. I need the first letter of each word
to be capitalized.

Thanks in advance.
 
Stuart said:
I have a text field with titles in it. I need the first letter of
each word to be capitalized.

Thanks in advance.

UPDATE TableName
SET [TableName]![FieldName] = StrConv([TableName]![FieldName], 3)

(please test on a COPY of the data first)
 

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.

Ask a Question

Back
Top