Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is there a way to get Text Box in proper case on a report?

Status
Not open for further replies.

DIRENE

Technical User
Jan 19, 2004
51
US
I have a report named rptLetter on the report I pull customer information from a query. Every thing in my database is typed in caps. Is there a way to get them to pull in my report like Irene not IRENE.

Thank you,

Irene
 
On the Detail_Format add this:

TextField = StrConv(TextField, vbProperCase)

HTH
Mike

[noevil]
 
Mike,

I put this in detail on formating and I'm getting a error message that micosoft access can't find the macro "TextField = StrConv(TextField, vbProperCase)

Irene
 
Change "TextField" to the name of your text field

HTH
Mike

[noevil]
 
Mike, I change the textfield to Firstname and it still does not work

Irene
 
Do I have to have a marco or module of some kind?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top