Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Multiple Values to Text Field

Avatar

Level 1

I have a subform with 30 checkboxes. I want the rawvalues of these boxes displayed in (1) text field. I can get one value to appear but not multiple. The current script : calculated event.      this. rawvalue= checkbox15.rawvalue; this.rawvalue=checkbox16.rawvalue.  I have checkbox15 set to 15 and checkbox16 set to 16. I am trying to to get one text feild to show 15, 16, etc, etc, as checkboxes are checked.

Thank you for your help-

0 Replies

Avatar

Level 10

You need to concatenate the values of the checkboxes.

Try:

this.rawValue = checkBox15.rawValue + " " + checkBox16.rawValue + " " + checkBox17.rawValue + " " + ...;