Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

convert existing data in a table with vbProperCase 1

Status
Not open for further replies.

ironj32

Technical User
Dec 7, 2006
73
US
I've been looking through strConv threads, but can't seem to find an answer. Can I convert the existing data in a table to Proper Case? Guessing I probably have to use a query or something?
 
I think you just want an update query?

Code:
Update Table
set Column = StrConv(Column, 3)

(3 is the constant for vbProperCase)

Hope this helps,

Alex

Ignorance of certain subjects is a great part of wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top