Form data true/false

Hello community! :waving_hand:

On my form, I have some questions with checkboxes as answers, since multiple answers can be selected for a single question. I chose checkboxes because I can fully customize their style, unlike a select field.

The problem is that when a user submits the form, I receive a list of true/false values for each checkbox, but I’d like to receive only the ones that are true, meaning only the selected options.

Have any of you ever done this before? And if so, how did you manage to do it? I tried adding some JavaScript, but I haven’t gotten satisfying results so far. :disappointed_face:

Here is the form in question : Webflow - LRD copie 1232235356559961532365

Three options really;

  1. Webflow forms does not give you a way to customize the notification content, but you can hack it by deleting all of the unchecked checkbox elements from the form DOM physically just before the submit. That’s a bit gnarly, but some people like it as a quick hack.
  2. Don’t use Webflow’s form handler, pass your form data to a 3rd party handler like basin which has a lot more customization.
  3. Pass your form submission directly to an automation system like Make.com where you have full control over adjust the form data and creating the notification. The most technical but the most versatile as well.

Thank you so much :folded_hands:
I had thought of using Make, and I think it will be the simplest solution for what I need.
Problem solved :blush: