Jump to content

This topic is 8010 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

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 -

Posted

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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.