amypaulsmom Posted February 27, 2003 Posted February 27, 2003 I am using the Patterncount feature to find the work "signed" in a description field. Here is my calculation: PatternCount(FoundDescription, "signed"). This works fine, except that it is only finally exactly the word "signed" - not SIGNED or Signed. Can I adjust for this easily. I need to find the word Signed in any format within my FoundDescription field. thanks -
amypaulsmom Posted February 28, 2003 Author Posted February 28, 2003 Solved my own problem - by looking at the calculation field that I had attached to this field definition. thaks
Vaughan Posted February 28, 2003 Posted February 28, 2003 Yes PatternCount is case sensitive. One way around it is to make the field all lowercase for the purpose of the comparison: PatternCount(Lower(fieldname), "signed") It could have equally as effectively been made uppercase.
Recommended Posts
This topic is 8010 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now