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-
Views
Replies
Total Likes
You need to concatenate the values of the checkboxes.
Try:
this.rawValue = checkBox15.rawValue + " " + checkBox16.rawValue + " " + checkBox17.rawValue + " " + ...;
Views
Replies
Total Likes