Amram Chayim Eirinberg Posted April 20, 2010 Posted April 20, 2010 (edited) Hi all, I'm trying to use 'PatternCount' function to give me the count of text in a field from all records. My syntax is PatternCount(text;List(TableName::FieldName)), However it only counts the text in the active field - How do I get the count of text from all records? BTW The records are native, not related. Any help will be very much appreciated! Amram Chayim Eirinberg Edited April 20, 2010 by Guest added space to subject
Raybaudi Posted April 20, 2010 Posted April 20, 2010 List(TableName::FieldName) will give ONLY the value of TableName::FieldName. To have a list of all the record you'll need a selfjoin relationship. The calc will be: PatternCount( text ; List( TableName 2::FieldName ) )
bruceR Posted April 20, 2010 Posted April 20, 2010 How many records is "all records"? This could be a really performance problem.
Amram Chayim Eirinberg Posted April 20, 2010 Author Posted April 20, 2010 (edited) Ray Thanks A Million! Edited April 20, 2010 by Guest
Recommended Posts
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