Access 2007 - Text Case

  • Thread starter Thread starter MBaronet
  • Start date Start date
M

MBaronet

Can text case be changed in a field. For example, the entire field is in
upper case. I need to change it to title case.
 
Can text case be changed in a field. For example, the entire field is in
upper case. I need to change it to title case.

Run an Update query updating the field to

StrConv([fieldname], 3)

That Will Convert It To Proper Case (Like This).

2 will CONVERT IT TO ALL CAPS; 1 will convert it to lower case.

John W. Vinson [MVP]
 
Back
Top