Exporting query -- uppercase data

G

Guest

When I export a query, I want one of my fields to be exported in
uppercase. I've used the ">" criteria in the format and input mask fields for
my table. The field appears in uppercase when I view the query, but when it's
exported, some of the data is lowercase.
 
O

OfficeDev18 via AccessMonster.com

You're confusing two different functions. ">" meaning UPPER CASE is only a
display option; it doesn't change the actual data. If you want the data to
actually change to upper case, use the UCase() function, as in txtUpperCase:
UCase(txtMixedCase).
 
G

Guest

That's helpful, but isn't there anyway to force my data in a table to be
uppercase besides running a function on all the data? I don't want to have to
think about taking that extra step. I just want the data in that field to
always be upper case.
 
O

OfficeDev18 via AccessMonster.com

Sorry, there isn't.

The only other way is to use the UCase() function when you first put the data
in the table. Obviously, that's the same as using the function when you
report on it. Six of one and half-a-dozen of the other.
That's helpful, but isn't there anyway to force my data in a table to be
uppercase besides running a function on all the data? I don't want to have to
think about taking that extra step. I just want the data in that field to
always be upper case.
You're confusing two different functions. ">" meaning UPPER CASE is only a
display option; it doesn't change the actual data. If you want the data to
[quoted text clipped - 5 lines]
 

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