damonkimble
MIS
Using Crystal 10 connecting to MS SQL 2000 via ODBC.
I am trying to find out if the value of a field is all caps. I was hoping the following formula would work, but it returns 1 with an o3_name of '275 Main St.'
Apparently, uppercase (& lowercase) don't make a difference in comparisons. Any suggestions???
thanks,
damon
I am trying to find out if the value of a field is all caps. I was hoping the following formula would work, but it returns 1 with an o3_name of '275 Main St.'
Code:
if {SiteAddress.o3_name} = uppercase({SiteAddress.o3_name})
then 1
else 2
Apparently, uppercase (& lowercase) don't make a difference in comparisons. Any suggestions???
thanks,
damon