Tony Martin Posted June 11, 2009 Posted June 11, 2009 HI everyone. I have a field which is user-controlled by radio buttons. I'm currently looking to create a calcumation field that tells me, out of all the possible text combinations, how many occurrences of the word "MINERS" are selected. I've been on another 32 hr FileMaker bender and I'm brain dead. Any suggestions for how to make this happen?
LaRetta Posted June 11, 2009 Posted June 11, 2009 (edited) If you use a global text field to hold the word you wish to find then it could be: PatternCount ( text ; globalField ) If you want to only count complete words and eliminate false positives (if you want to find THE but not find THEM, then you begin and end with space, like: PatternCount ( text ; " " & globalField & " " ) Edited June 11, 2009 by Guest
Recommended Posts
This topic is 5703 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