Jump to content

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

Recommended Posts

Posted

Is there a way to trigger what value i selected on a field with multiple checkbox?

I have field with valuelist checkbox. How do i know what value i selected when checking the box?

Posted
  On 10/21/2022 at 5:27 AM, archrid404 said:

How do i know what value i selected when checking the box?

Expand  

A field formatted as a checkbox set contains all the values you have selected, in the order that you have selected them. So you can know which value you have selected last by looking at:

RightValues ( YourField ; 1 )

or - if you don't want the trailing carriage return that RightValues() appends to its result:

GetValue ( YourField ; ValueCount ( YourField ) )

 

  On 10/21/2022 at 5:27 AM, archrid404 said:

Is there a way to trigger what value i selected on a field with multiple checkbox?

Expand  

Not sure what you mean by "trigger". If you intend to use this to trigger a script, you need to consider what will happen when you deselect a value.

 

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