Newbies spacetime Posted February 11, 2004 Newbies Posted February 11, 2004 What is the best way to match the contents of a field (text) with all items in a value list so that it returns a "yes no" or" 0 1"? Example: "song title" field matching to "original song title" field to compare for spelling mismatch, and flagging this mismatch. Thanks.
Vaughan Posted February 12, 2004 Posted February 12, 2004 Look at the Exact(field1, field2) function. It's case sensitive. To effectively make it case insensitive use the Lower() function... Exact( Lower(field1), Lower(field2))
Recommended Posts
This topic is 7592 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