Upper Case

  • Thread starter Thread starter Tammy Woods
  • Start date Start date
T

Tammy Woods

I have a parameter query that I use in a report. I have
the information that is requested in the parameter query
appear on the report. Is there a way to make the
parameters that prints on the report appear in upper case?
 
Tammy;

In the OnFormat Event of the Detail section add the following::
Me!YourTextboxName = UCase(Me!YourTextboxName)

Change "YourTextboxName" to the name of Your TextBox

Andy
 
Back
Top