G
Guest
Hi How do I format the data in a table so the first letter is capital, but
there rest is not, eg Surnames? (> = all one format)
there rest is not, eg Surnames? (> = all one format)
Hi How do I format the data in a table so the first letter is capital, but
there rest is not, eg Surnames? (> = all one format)
AlCamp said:Timboo,
I reconsidered my response. Everything's OK, but since you don't want
any capitals after the first character, then use this instead...
[YourFieldName] = Ucase(Left([YourFieldName],1)) &
LCase(Mid([YourFieldName],2))
so... "this IS aN ExamPle" would yield "This is an example"
hth
Al Camp
Timboo said:Hi How do I format the data in a table so the first letter is capital, but
there rest is not, eg Surnames? (> = all one format)