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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Uppercase formula to suppress text 1

Status
Not open for further replies.

jchewsmith

Technical User
Nov 20, 2006
161
US
I have a varchar field that is populated with either all uppercase letters or camel case. I want to be able to filter out the words that are all uppercase. Is this possible.

So field equals

ABC CO
Def Co
GHIA LLC

I want to suppress all except the Def Co fields?
 
There maybe a way to do this. I just checked with one of my databases, but not sure it will work with all databases. First off in Options and Report Options, you need to uncheck the 'Database Server is Case-Insensitive'.

Then have a formula something like this for your filter.
if {somnefield}= uppercase({somefield}) then false else true
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top