I have a form with 13 checkboxes. I have it setup so that if it is checked, a cell is marked as either TRUE or FALSE.
What I'm trying to do is export the data from the form into a table. I have everything else finished, however I'm confused on how to input the checkbox values better.
Rather than doing this if statement for all the checkbox's
If CHECKBOX = TRUE Then
CHECKBOX_VAL = string
End If
If CHECKBOX2 = TRUE Then
CHECKBOX_VAL2 = string2
End If
table_object_row.Range(x,x).Value = CHECKBOX_VAL
table_object_row.Range(x,x).Value = CHECKBOX_VAL2
How can I simply export the TRUE values of the checkbox to the table. Should I be using an array to store only the True values?