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

Compare field with checkbox set


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

Recommended Posts

Posted (edited)

I can't seem to figure out how to calculate if a value in one field is one of the values in a checkbox list. When I use Case (field1 = List ( field2 );"something happens"), "something happens" only when just one checkbox is checked. But I want this to be true when the same value is checked, no matter if there are others checked as well. Does this make sense? I hope someone can help me out...

VAB

Edited by Guest
Posted

PatternCount ( ¶ & YourCheckboxField & ¶, ¶ & YourField & ¶ )

If it is checked it will return a value, most likely 1 if its unique.

Posted

I can't seem to figure out how to compare the value in one field to one of the values in a checkbox list. When I use Case (field1 = List ( field2 );"something happens"), "something happens" only when just one checkbox is checked. But I want this to be true when the same value is checked, no matter if there are others checked as well. Does this make sense? I hope someone can help me out...

VAB

Posted

Please do not double post.

http://fmforums.com/forum/showtopic.php?tid/198847

Posted

Sorry, both solutions seemed to work, but in end they didn't give me the results I wanted. So let me tell a little bit more about what I want:

I use the calculation for a "replace field contents" behind a button.

Field1 = 1,2,3... or 14

Field2 (checkbox set) = 1,2,3... and/or 14

Field3 = empty or "x"

button1: Case1(When field1 = one of selected in field2 ; field3 = "x")

button2: Case2(When field1 = one of selected in field2 ; field3 = "")

Solution with length() doesn't works in case2. Solution with patterncount() doesn't work because it counts the "1" in "11", "12", "13" etc. as well.

Can you help me?

Posted

First why are you using Replace Field Contents?

Second why do you have two buttons? It seems as if you only really need 1.

The PatternCount should work but you can use FilterValues as well. I keep forgetting about that new function.

All you really need is one button with a SetField.

Set Field [ Field3; FilterValues ( Field2 ; Field1 )]

Posted

I'm guessing PatternCount failed because you didn't construct the formula with the pilcrows (carriage return characters) as John specified in his original post.

Posted

My field3 is a selection box too, to select my records in my database.

I use two buttons, because I want to extend my previous selection. Anyway, it works now... thank you very much!

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