Newbies eelandsaphire Posted June 6, 2005 Newbies Posted June 6, 2005 Hi I have a field a with a long value list which is defined to contain only specific values. But the field contains some imported data which includes entries that are not on the list and are therefore not valid and need to be replaced. I would therefore like to do a search to find all non-valid entries so that I can edit them to conform with my list. Does anyone have any suggestions? Please forgive me if this is a silly question, I'm not an expert at all in this. Many thanks eelandsaphire
Brian C Posted June 6, 2005 Posted June 6, 2005 Lets assume for this example: file name = "new.fp5" data field = "Field01" valuelistname = "test" Create a calculation field called: "cValidationCheck" if(Position( ValueListItems("new.fp5" , "test") , Field01 , 1, 1) , "Y" , "N") If I have done this correctly, it should determine instantly if the value stored in the field is a member of the value list. if it is a member of the value list the value stored in the calculation field should be a "Y", otherwise it will be a "N". You can then do a search on this field to find any record containing an "N".
Newbies eelandsaphire Posted June 7, 2005 Author Newbies Posted June 7, 2005 It worked perfectly! That's saved me days of work. Thank you so much Brian C.
Recommended Posts
This topic is 7110 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