kodama Posted January 5, 2006 Author Posted January 5, 2006 I should have said validate by a value list OR a calc, because value list AND a calc is there already. I need to validate by a value list and have some exceptions that are not part of the value list but will let the validation pass.
comment Posted January 6, 2006 Posted January 6, 2006 You have to validate by calculation alone. In your calculation, check if the entry is a member of the value list OR is an exception.
kodama Posted January 9, 2006 Author Posted January 9, 2006 Thanks comment. I don't see a way in a calc to validate if a field's data is part of a value list, could you point me in the right direction?
comment Posted January 10, 2006 Posted January 10, 2006 Try: not IsEmpty ( FilterValues ( ValueListItems ( Get (FileName) ; "yourValueList" ) ; ValidatedField ) )
kodama Posted January 11, 2006 Author Posted January 11, 2006 Thanks Commnet! Works like a charm, I have the field validating off of 2 value lists! not IsEmpty ( FilterValues ( ValueListItems ( Get (FileName) ; "ValueList 1" ) ; CAO Number ) ) or not IsEmpty ( FilterValues ( ValueListItems ( Get (FileName) ; "ValueList 2" ) ; CAO Number ) )
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