Problem with capitalized letters showing up lower case in a report

S

Sue

So in the table & query on which my report is based, I "see" capital letters
in a 6-character field where the first character is always a letter, the
second character may be a letter or a number, and last 4 characters are
always numbers. I have an input mask:
LA0000.
In my report, I use a concatenated expression that includes the field above.
Some of my letters are lower case.
is there a fix for this?
 
J

John W. Vinson

So in the table & query on which my report is based, I "see" capital letters
in a 6-character field where the first character is always a letter, the
second character may be a letter or a number, and last 4 characters are
always numbers. I have an input mask:
LA0000.
In my report, I use a concatenated expression that includes the field above.
Some of my letters are lower case.
is there a fix for this?

Are you perhaps using a Format in the table with a > character? If so, it will
*display* text in upper case, regardless of the stored case.

To see all caps in the form/report, you can set the format of the textbox in
which you display the field to

">"

Alternatively, you can run an Update query to actually store upper case in the
table; make a backup of your database just in case, and update the field to

UCase([fieldname])
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top