Formatting upper or lower case text

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

Guest

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