Newbies roc1125 Posted July 8, 2009 Newbies Posted July 8, 2009 I created a checkbox (called region1)with a bunch of fields "1", "2", "3", and "all". Does anyone know how to create a calculation for the field so that when I click on all,1, 2, and 3 will all be selected.
comment Posted July 8, 2009 Posted July 8, 2009 Try auto-entering (with replacing existing value) = Case ( IsEmpty ( FilterValues ( "all" ; region1 ) ) ; region1 ; "1¶2¶3" ) This can be smartened up by using ValueListItems() instead of hard-coding the values in the formula.
Newbies roc1125 Posted July 9, 2009 Author Newbies Posted July 9, 2009 Thank you. I'm pretty new to file maker what do you mean about the valuelist?
comment Posted July 9, 2009 Posted July 9, 2009 I mean that you could use the ValueListItems() function to return a list of all the items to be checked. This way you can modify the value list without needing to adjust the calculation.
Recommended Posts
This topic is 5675 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