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

S

Stuart Reicher

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

Thanks in advance.
 
R

Rick Brandt

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