Format portion of text sting in upper case

S

Sammie

I have a concatenated string in my query like
=([field1] & [field2] & [field3])
I want field2 to appear in upper case, but the rest of the fields are to be
normal case, as they were typed in. I formatted field2 in my query as upper
in the format property with ">" but the upper case is lost within my string.
Any ideas?
 
S

Stuart McCall

Sammie said:
I have a concatenated string in my query like
=([field1] & [field2] & [field3])
I want field2 to appear in upper case, but the rest of the fields are to
be
normal case, as they were typed in. I formatted field2 in my query as
upper
in the format property with ">" but the upper case is lost within my
string.
Any ideas?

Use the Ucase function:

=([field1] & Ucase([field2]) & [field3])
 

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