itsalljustaride Posted March 16, 2009 Posted March 16, 2009 I'm trying to use the values entered in a "Ignore Words" value list during a calculation to set a catalog number for film titles (for example, ignoring words like "the" and "a"). I would assume I would use the ValueListNames function, but not sure how exactly it works. How do I test if a text string is in that value list? I tried something along the lines of If firstword = ValueListNames( Get (Filename); 'Ignore Words List") But that didn't go so well. Any thoughts?
Fitch Posted March 16, 2009 Posted March 16, 2009 Try this: Case ( Position ( ValueListNames( Get (Filename); "Ignore Words List") ; firstword ; 1 ; 1 ) )
Recommended Posts
This topic is 5731 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