How do I write a Strconv in Microsoft Access?

G

Guest

This subject was discused 3/18/2006 - What input mask will put capitals at
the beginning of any word. I'm importing data into microsoft, and all fields
are uppercase and I want to change the to proper case. One of my fields is
"status". I used the sample, strStreet1 = StrConver(strStreet1,
vbProperCase), nothing happen. What do I do once the conv is entered into
AfterUpdate Event?

Thanks,

Lenore
 
R

Rick Brandt

Lenore said:
This subject was discused 3/18/2006 - What input mask will put
capitals at the beginning of any word. I'm importing data into
microsoft, and all fields are uppercase and I want to change the to
proper case. One of my fields is "status". I used the sample,
strStreet1 = StrConver(strStreet1, vbProperCase), nothing happen.
What do I do once the conv is entered into AfterUpdate Event?

Thanks,

Lenore

If you are importing data an InputMask is irrelevant. They only work for data
manually entered into a form. You can run an update query...

UPDATE TableName
SET FieldName = StrConv(FieldName, 3)
 

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