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

Calculations with Tickboxes


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

Recommended Posts

Posted (edited)

How do you use tickbox entries in calculations? For instance, Say I have a tick box with 5 values, (Eg. A, B, C, D,E) and I want to use an "if" statement with them. I want the result of the statement to be true if A is selected, but any of the other values can be selected with A, it still stays true. So far I used If(TickboxField ="A"; blah blah), It works If A is the only option selected. How do I make it work so that any other options can be selected with A?

Edited by Guest
Posted

The Case function to me is easier to use, this is not tested, but it should be correct.

Case(

TickboxField = "A"; "blah";

Tickboxfield = "B"; "blab";

Tickboxfield = "C"; "you get the idea")

HTH

Lee

Posted

Yes thankyou, that is easier to use, but It still does not solve my problem. I will try to make myself more clear. If A is selected, the expression must be true, nevermind if B or C ect is selected with A. At the moment the expression is true when A is selected, but the moment I select something else with A it does not work.

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