Changing Case

K

Karl Krelove

How do I change the contents of specific fields in all
records of an Access 2000 database from all caps (UPPER
CASE) to "Title" case (Upper Case)?

Thanks for any help.
 
D

Dirk Goldgar

Karl Krelove said:
How do I change the contents of specific fields in all
records of an Access 2000 database from all caps (UPPER
CASE) to "Title" case (Upper Case)?

Thanks for any help.

Run an update query that updates each of those specific fields to
StrConv([the field], 3). For example:

UPDATE MyTable
SET ThisField = StrConv(ThisField, 3),
ThatField = StrConv(ThatField, 3);
 
K

Karl Krelove

Thanks - worked like a charm. I can't find any listing in
the Help files explaining any of the "built in functions"
in the Expression Builder. Where are the functions defined?

Karl
-----Original Message-----
How do I change the contents of specific fields in all
records of an Access 2000 database from all caps (UPPER
CASE) to "Title" case (Upper Case)?

Thanks for any help.

Run an update query that updates each of those specific fields to
StrConv([the field], 3). For example:

UPDATE MyTable
SET ThisField = StrConv(ThisField, 3),
ThatField = StrConv(ThatField, 3);

--
Dirk Goldgar, MS Access MVP
www.datagnostics.com

(please reply to the newsgroup)


.
 
J

John Vinson

How do I change the contents of specific fields in all
records of an Access 2000 database from all caps (UPPER
CASE) to "Title" case (Upper Case)?

Thanks for any help.

Run an Update query updating the field to

=StrConv([fieldname], 3)
 
D

Dirk Goldgar

Karl Krelove said:
Thanks - worked like a charm. I can't find any listing in
the Help files explaining any of the "built in functions"
in the Expression Builder. Where are the functions defined?

Unfortunately, you see different help topics when you search from the
Access application window from when you search from the VB Editor
window. StrConv is a VBA function, and only shows up when you go into
the help file from the VB Editor.
 
Joined
Mar 14, 2008
Messages
1
Reaction score
0
ALL Caps

How do I get all of the information that is on one table to be ALL in CAPS. Is there a quick way of doing it manually?
 

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