G Guest Jan 1, 2005 #1 I have a text field with titles in it. I need the first letter of each word to be capitalized. Thanks in advance.
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 Jan 1, 2005 #2 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. Click to expand... UPDATE TableName SET [TableName]![FieldName] = StrConv([TableName]![FieldName], 3) (please test on a COPY of the data first)
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. Click to expand... UPDATE TableName SET [TableName]![FieldName] = StrConv([TableName]![FieldName], 3) (please test on a COPY of the data first)