G Guest Jul 12, 2007 #1 Is there a way to make the first letter of text Upper case while the rest of the text is lower case? EG: Henry Beeler
Is there a way to make the first letter of text Upper case while the rest of the text is lower case? EG: Henry Beeler
G Guest Jul 12, 2007 #3 What if I just wanted to manipulate the output in a query or tbl? Is this the only way to format this? Ofer Cohen said: Try StrConv([FieldName], vbProperCase) -- Good Luck BS"D lschuh said: Is there a way to make the first letter of text Upper case while the rest of the text is lower case? EG: Henry Beeler Click to expand... Click to expand...
What if I just wanted to manipulate the output in a query or tbl? Is this the only way to format this? Ofer Cohen said: Try StrConv([FieldName], vbProperCase) -- Good Luck BS"D lschuh said: Is there a way to make the first letter of text Upper case while the rest of the text is lower case? EG: Henry Beeler Click to expand... Click to expand...
G Guest Jul 13, 2007 #4 In a query you should use SELECT StrConv([FieldName],3) AS UpperFieldName FROM TableName I'm not familliar with a different way on doing that -- Good Luck BS"D lschuh said: What if I just wanted to manipulate the output in a query or tbl? Is this the only way to format this? Ofer Cohen said: Try StrConv([FieldName], vbProperCase) -- Good Luck BS"D lschuh said: Is there a way to make the first letter of text Upper case while the rest of the text is lower case? EG: Henry Beeler Click to expand... Click to expand... Click to expand...
In a query you should use SELECT StrConv([FieldName],3) AS UpperFieldName FROM TableName I'm not familliar with a different way on doing that -- Good Luck BS"D lschuh said: What if I just wanted to manipulate the output in a query or tbl? Is this the only way to format this? Ofer Cohen said: Try StrConv([FieldName], vbProperCase) -- Good Luck BS"D lschuh said: Is there a way to make the first letter of text Upper case while the rest of the text is lower case? EG: Henry Beeler Click to expand... Click to expand... Click to expand...