Becky Edwards
asked on
Want to include data that starts with a specific number
I have a field that I want crystal to evaluate, and if the field starts with the number 9, then I want to include that data. I know where to put this code - in the section expert under suppression, I just don't know how to say it in crystal language. Below is my attempt which did not work. Please help.
and(totext({CLARITY_EAP.PR OC_CODE}) like "9")
and(totext({CLARITY_EAP.PR
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
You could also use
and (totext({CLARITY_EAP.PROC_ CODE}) StartsWith "9")
or
and (Left(totext({CLARITY_EAP. PROC_CODE} ),1) = "9")
mlmcc
and (totext({CLARITY_EAP.PROC_
or
and (Left(totext({CLARITY_EAP.
mlmcc
ASKER