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)
 
Back
Top