G
Guest
Hello....Does anyone know of a way to change text that has been typed in ALL
CAPS to Sentence case without having to retype everything?
CAPS to Sentence case without having to retype everything?
Douglas J. Steele said:Permanently, or just for a specific usage?
For a specific usage, use the StrConv with a conversion argument of 3:
SELECT StrConv([MyAllUpperCaseField], 3) FROM MyTable
For a permanent solution, use an Update query which invokes that function.
(Make a backup copy of the table first, just in case something goes wrong!)
Douglas J. Steele said:Permanently, or just for a specific usage?
For a specific usage, use the StrConv with a conversion argument of 3:
SELECT StrConv([MyAllUpperCaseField], 3) FROM MyTable
For a permanent solution, use an Update query which invokes that function.
(Make a backup copy of the table first, just in case something goes wrong!)
Randy said:Hi Doug...I supose I should make this a permenant thing so users can type
either way. If a user types in lower case will this auto convert to
sentence
case? Also, where exactly should I put the recommended statement?
--
Randy Street
Rancho Cucamonga, CA
Douglas J. Steele said:Permanently, or just for a specific usage?
For a specific usage, use the StrConv with a conversion argument of 3:
SELECT StrConv([MyAllUpperCaseField], 3) FROM MyTable
For a permanent solution, use an Update query which invokes that
function.
(Make a backup copy of the table first, just in case something goes
wrong!)
--
Doug Steele, Microsoft Access MVP
(no e-mails, please!)
Randy said:Hello....Does anyone know of a way to change text that has been typed
in
ALL
CAPS to Sentence case without having to retype everything?