Text formating

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm having trouble with getting my text to display in title case on my
reports. I don't care how the operator inputs the information, but I do care
how it looks in the reports. I'd like the names to display with the first
letter capped and the subsequent letters displayed lower case.

Can anyone help me?
 
Get into design mode of the report, select the field and go through all the
options on the properties tab....eventually you will come to text and font
attributes and can assign all the properties you need
 
Boeing818 said:
I'm having trouble with getting my text to display in title case on my
reports. I don't care how the operator inputs the information, but I do care
how it looks in the reports. I'd like the names to display with the first
letter capped and the subsequent letters displayed lower case.


Use the StrConv function to get "Proper Case" for the text.
This is easily done by using an expression in the names text
box:

=StrConv(namefield, 3)

Make double certain that the text box is **not** named the
same as the namefield.
 
Back
Top