convert to title case?

S

sally t

Can I set an input mask or format that will convert ALL words in that field
to title case, even if there are several words?

Also (but unrelated), how do I trim leading spaces from a field?

Thanks.
Sally T
 
M

mscertified

I dont know what you mean by 'title case'?
However, I suggest you refer to HELP on 'Mask' as it will answer your
question.
to trim left, use the LTRIM() function. There is also an RTRIM() function
for trimming right and a TRIM() function for trimming both left and right.

Dorian
 
F

fredg

Can I set an input mask or format that will convert ALL words in that field
to title case, even if there are several words?

Also (but unrelated), how do I trim leading spaces from a field?

Thanks.
Sally T

Is This Your Idea Of Title Case?
Code the AfterUpdate event of the control in the Form used for data
entry:
Me![ControlName] = StrConv([Controlname],3)
 
S

sally t

Hello FredG, Yes, that's title case. Sorry, I'm not a developer, can you
give me step by step instructions - where do I write that code? Thanks.
SAlly t

fredg said:
Can I set an input mask or format that will convert ALL words in that field
to title case, even if there are several words?

Also (but unrelated), how do I trim leading spaces from a field?

Thanks.
Sally T

Is This Your Idea Of Title Case?
Code the AfterUpdate event of the control in the Form used for data
entry:
Me![ControlName] = StrConv([Controlname],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