Jump to content

This topic is 7772 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Hello

I am trying to find a calculation that will bring up a dialog box if the user puts in specific characters into a serial number field. Specifically they may not enter the characters " O","? " or "1" . Trying to find out the best and fastest way to track a user putting in these characters.

Thanks

Dave

Posted

Users should have no access whatsoever ever to a serial number field. If you want to validate on any other field, you can use not ( PatternCount( field, " O" ) or PatternCount( field, "? " ) or PatternCount( field, "1" ) ) in either a field validation or script. If scripted, remove the 'not' to test for existence.

Posted

It is actually a vin number and I am trying to prevent the user from putting in those actual characters. So if they put in a "?" they should receive a warning dialog box. That is really what I am trying to do. So I am not sure the formula your gave me works.

Thanks

DAve

Posted

The vin number should NOT be your serial field then. A serial field should be completely separate and unrelated to any of the data within the record. And users should never be allowed to modify it. They probably shouldn't even need to ever see it. Just imagine what happens if someone 'accidentally' modified it. If you had any records related to it, that relationship would be broken.

For all other fields, the field/script validation I suggested will work just fine. smile.gif

Posted

Thank you for you tips. In this case the Vin number is used to look up car characteristics and they are lookup. The reason I wanted to do this is because Vin numbers entered in may not use certain characters.

I did actually try the calculation and I apologize because I had a typo I couldn't tell it was working at first. But as pointed out above - that qualifies me as a colossal idiot and we all need reminders when we make mistakes as soon as they happen so we can feel a little more uptight about asking questions. Thanks for the help JT and the concerns.

This topic is 7772 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.