brainonastick Posted September 27, 2009 Posted September 27, 2009 Hi there, I need to add some special validation to a Postcode field so that it forbids entry of the following three strings: "0000" "@@@@" "OSPC" I haven't been able to figure out a calculation that will exclude these 3 strings. Any help gratefully received. Cheers, Steven
Genx Posted September 28, 2009 Posted September 28, 2009 (edited) ... If( Field = "0000" OR Field = "@@@@" OR Field = "OSPC" ; false ; true ) (the false and true might need to be reversed if you're acutally using FM validation) Edited September 28, 2009 by Guest
Recommended Posts
This topic is 5594 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