Multiple values in one field from checkboxes

I have a checkbox group and I want to store all values checked in a single comma separated liste in one field. I have after the name and I have multiple checked in the action. I’m sure I’m missing a step. If I only check one box it inserts, but multiple and the field is left null. Is there a tutorial of somewhere I can get direction. Thanks

Hi @ken, this might help you out. Dynamically Check Multiple Checkboxes

1 Like

Thanks Scott, that seems to be more for populating them for an edit. I’m just trying to insert multiple values into the filed. It seems like it should be easy, I know i’m missing something.

The concept for editing and inserting is the same, the only difference is one is an insert and one is an update.

If your page is set up as described in the tutorial, then it should work, providing you have the insert query setup properly as well.

It was the join statement in the insert query. Thanks for pointing me in the right direction!