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

Selecting Text not in Upper case

Status
Not open for further replies.

kime1974

Programmer
Oct 30, 2006
36
0
0
US
I am using Crystal 8.5 and XI.

I need to display records that certain field data in not in Upper case. Examples are below:

125 Main Street
45 ELM STREET
45 PORTER CIRCLE
98 Salem Street

I would like the results return:
125 Main Street
98 Salem Street

Thanks!
Kim
 
Please see thread767-1570270.

-LB
 
It appears to me that Kim is looking to skip records that are all-caps. Not that I have an answer ...
 
this should work if your skipping records with ALL caps

asc(right(trim({field}),1)) >= 97 and asc(right({field},1)) <= 122


_____________________________________
Crystal Reports XI Developer Version
Intersystems Cache 5.X ODBC connection

 
asc(right(trim({field}),1)) >= 97 and asc(right(trim({field}),1)) <= 122

_____________________________________
Crystal Reports XI Developer Version
Intersystems Cache 5.X ODBC connection

 
Yes, I think I misunderstood.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top