Formatting upper or lower case text

L

lschuh

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
 
L

lschuh

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
 
O

Ofer Cohen

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top