pryjda Posted April 17, 2006 Posted April 17, 2006 Does anyone know how to do a search for fields containing over 500 characters? Got a big SQL project coming up and need assistance. Thnak you in advance!
Zero Tolerence Posted April 18, 2006 Posted April 18, 2006 The only way I can think to do this right now is to loop through your records, and omit the ones that have over 500 character, then show all omited. Loop If[Length(Field) > 499] Omit record end if go to next record(Exit if last) End Loop
LaRetta Posted April 18, 2006 Posted April 18, 2006 You can create a calculation (result is number) with: Length ( theField) > 500 This will produce a 1 which is searchable; in fact, the calc can be stored within a Find Request as: Field: newCalcField Value: 1 Use only the Perform Find[] and store the Find Request there (forget Enter Find Mode[] here - it isn't needed). The calc is also indexable as ALL so searching will be fast. LaRetta :wink2:
Recommended Posts
This topic is 7063 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