brainonastick Posted August 20, 2007 Posted August 20, 2007 Hi there, I want to prevent users entering ampersands (&) into a field. Can I use validate by calculation and if so how do I code up the calculation?
Vaughan Posted August 20, 2007 Posted August 20, 2007 You cannot stop people from *entering* things into a field, but you can stop them from *committing the record* until the offending characters are removed. Validation by calculation: Patterncount( field ; "@" ) = 0
mr_vodka Posted August 20, 2007 Posted August 20, 2007 Try not PatternCount ( yourField; "&" ) as the validation calc.
Recommended Posts
This topic is 6643 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