Jump to content

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

Recommended Posts

Posted

Hello

I need to flag if a field contains more than 11 characters. The field is called "number" and

it needs to be 11 characters or less, if it is more I need to show a dialog box to indicate it is incorrect.

How does one do this?

Thanks

Stan

Posted

jscooper's method will stop a user from entering more than 11 characters. If you need to clean up data that's already been entered and may be incorrect then you can do it with a calc field:

Flag = case(length(EnteredData)>11,1,0)

This topic is 7652 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.