How to capture Checkboxes on Form Submissions

How do I get the checkboxes from my form to show on the Form Submission Results page and also on the workflows? Is there some code missing?
thanks!!
webform|647x500

Hi @Sue
The forloop on your confirmation page should output the results just the same as any other field.
The values of any checkboxes ticked will be stored as a comma-separated string.
However, if no checkboxes are ticked, no information will be stored.

Here’s an example of the Liquid output of a checkbox list:

Actually, from your screenshot, it looks like your input name is different to your field name in the form builder.
Did you update the field name but not update the form code?

Where your form code has:

name="WillYourProjectRequirecheckAllThatApply"

I think it should be:

name="EngagementNeedscheckAllThatApply"

Or you can re-insert that field using the “Form Fields” button above the form layout editor window:

Thanks Adam!!
That did the trick. I missed that bit of code when I updated the form.