i try to open my query in design view and click Update Query
i put this StrConv([Description],3) under 'Description' row field
in my database
it doesnt convert all the description to proper case.
Im doing the right thing? or do i miss some SQL?
when i see the result it display only the Description Row field and the
proper case function is not working.
thanks for any help again
Allen Browne said:
So, in the Field row in query design, enter:
StrConv([SomeField], 3)
In practice, this is of limited use. Doesn't work well for names such as:
- McDonald
- van Leen
- O'Brien
and so on.
In the Query that support the subform enter ProperDescription:
strConv(Description,,,,) and use the value that does proper case.
Denver wrote:
Allen,
I have seen on the help window in VBA code window the Strconv()
but i dont know how to write my VBA code or what event do i need to
use.
I have a form with a subform and has a Filed name 'Description' i
want to apply this Strconv() code in this filed what would be my be
look like? thanks for the help again.
i am using access 2003
thanks
***********************
:
I have Data Entry Form i want to apply a Proper Case Function.
Can anyone help me how to accompish this to some of my fields?
There is no Pcase() built into Access.
In the VBA window, see help on StrConv().