Field type that collects all checkboxes values? | Community
Skip to main content
Charles_Sander1
New Participant
March 15, 2019
Solved

Field type that collects all checkboxes values?

  • March 15, 2019
  • 1 reply
  • 1857 views

Before I go making several test fields that don't work, I figured I'd ask here...

I've added a Checkboxes field to a form so the user can make multiple choices ( with underlying numeric value 1, 2, etc.). The lead's underlying field for this choice is currently an integer type. But that doesn't record multiple values if the user chooses more than one. It appears to only take the first value from the checkboxes.

In order to get a field with the multiple choices, what field type should I use? My intent, is then to create a segmentation on those values to customize an autoreply.

(I'm presuming string or formula?)

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by SanfordWhiteman

Simply choose the String type -- in theory. However, if you're going to be filtering on numeric strings within a semicolon-delimited list, you can have false positives.

For example, the string

3; 9; 52

will mistakenly match "2".

So the better way to work it is to store leading zeros, up to the practical (ha) max:

0003; 0009; 0052

1 reply

SanfordWhiteman
SanfordWhitemanAccepted solution
New Participant
March 15, 2019

Simply choose the String type -- in theory. However, if you're going to be filtering on numeric strings within a semicolon-delimited list, you can have false positives.

For example, the string

3; 9; 52

will mistakenly match "2".

So the better way to work it is to store leading zeros, up to the practical (ha) max:

0003; 0009; 0052