Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

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

Recommended Posts

Posted

i'm trying to set up my database so that if one box is checked in a field, then the box in another field CANNOT be checked (no data entry allowed). is this possible?

Posted

You could use field validation, but that may be a pain for the user. I would suggest the visibility technique for this. Do a search on this site for visibility.

Posted

There are many ways to go here. Field level validation (which I would avoid in this instance because we can); an invisible portal which only shows Checkbox2 if Checkbox1 is empty or attach a script. Script would be easier than invisible portal and more User-friendly than field-level validation.

On Checkbox2, turn off Allow Entry to field (in Field Behavior). Attach script of:

If [ IsEmpty(Checkbox1) ]

Set Field [Checkbox2; If(IsEmpty(Checkbox2); "your checked value" ) ]

Else

Show Custom Dialog [ Button: OK; Message: "Checkbox 1 already selected." ]

End If

Update: Hi there, JT!!! smile.gif

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