Hi Freddy,
In order to store the checkboxes as new rows you need to:
- All of our checkbox names must be the same, followed by
[]For example:name="mycheckbox[]"and add different values to them:

2, Import the form under globals, the checkboxes will appear as an array multiple in POST vars:

- Add repeat step, and repeat the POST var created by your checkboxes:
- Add the insert step there, inside the repeat, and as vallue select
$valuereturned by your repeat:
When you submit your form, a new record will be created for each checkbox selected.

