LogoLogo
Back to studio
  • 🧠Core Concepts
    • Introduction to Formsort
    • Formsort quickstart guides
      • Add content and collect answers
      • Capture demographic data
      • Add informational content
      • Template your variables
      • Add conditional logic
      • Using conditional logic with Calculated and API variables
      • Add a scheduling option
      • End the flow
      • Review your variable schema
      • Set up integrations
    • How data works in Formsort
      • Responder UUIDs
    • Understanding flows
    • Versioning in Formsort (Deploying)
      • Variant revisions
      • Managing revisions
  • ✨Creating Flows
    • Building a new flow
      • Groups
      • Steps
      • Copy-pasting form content
  • Adding questions and content
    • Questions
      • Select
      • Text
      • Address
      • Comparison
      • Confirmation
      • Date
      • Date & time
      • Email address
      • File upload
      • Grid choice
      • Iframe
      • Image upload
      • Number
      • Payment
      • Phone number
      • Postal code
      • Question group
      • Region
      • Signature
      • SSN
      • Yes/No
    • Content
      • Statement
      • Image
      • Next button
      • Video
      • Divider
      • Map
  • Controlling the flow with conditions and logic
    • Advanced logic
  • Variable templating
  • Redirects and endings
  • Field validation
  • Flow and variant management
  • Content library
  • 🧬JSON Form Definition
  • JSON schemas
  • Validating flow schemas
  • Events subscriptions
  • Flow content data format
  • 🎨Styling
    • Customizing appearance
      • Content area & form layout
      • Buttons
      • Typography
      • UI states
      • Color and dimension variables
      • Question containers
      • Inputs and dropdowns
      • Checkmarks
      • Tables
      • Sliders
      • Divider lines
      • Progress bar
      • Comparison cards
      • Animations and transitions
  • CSS & Advanced Styling
    • Custom CSS overrides
    • Step styling
    • CSS reference
  • 🔁Form Behavior Settings
    • Variant settings
      • Form behavior for returning users
      • Group ranking API
    • Navigation sidebar
  • ⚙️Response Data Collection & Management
    • Schema (variables)
      • Variables from questions
      • Externally provided variables
      • Calculated variables
      • API lookups
      • System Library variables
      • Orphaned variables
  • Saving & retrieving responses
  • Importing Data
    • URL parameters
    • POST body
    • Embed query parameters
  • 📊Analytics and Attribution
    • Built-in analytics
    • Split testing
  • 🚀Publishing and Deployment
    • Live preview overview
    • Environments
      • Loading different environments
    • Embedding
      • Web-embed API
        • React-embed
      • Adding authentication
      • Embedding forms in iOS and Android
      • Setting up a dev environment
    • Pre-deployment checklist
  • 📁Workspace Management
    • Accounts
      • Roles and permissions
    • Custom domains
    • Workspace domain detection
  • 🛠️Formsort Admin API
    • Admin API
  • 🔌Integrations
    • Form answers and events
      • Analytics events
      • Signed requests
      • Event payload shape
      • Submission frequencies
      • Runtime error reporting
    • Integration reference
      • Amplitude
        • Amplitude cross domain tracking
      • BigQuery
      • FullStory
      • Google Analytics
        • Updating from Universal Analytics to GA4
      • Google Cloud Storage
      • Google Sheets
      • Google Tag Manager (GTM)
        • JavaScript triggered by flow events
      • Hubspot
      • Jornaya
      • Optimizely
      • PostgreSQL
      • Redshift
      • Rudderstack
      • S3
      • Salesforce
      • Segment
        • Segment Setup
        • Segment cross domain tracking
      • Stripe
      • TrustedForm
      • Webhooks
        • Zapier
Powered by GitBook
On this page
  • Core Settings
  • Customizing choices
  • Using the Choice Library
  • Collecting "Other" responses
  • Dynamic Choice Loading
  • Styling Choices

Was this helpful?

  1. Adding questions and content
  2. Questions

Select

Allows picking between a few choices.

PreviousQuestionsNextText

Last updated 15 days ago

Was this helpful?

Select questions are the easiest way to collect structured data from responders. Unlike text input fields, responders choose from pre-defined options, reducing friction and error. Common use cases include:

  • Single- or multiple-choice questions

  • Dropdown selections (e.g., U.S. states)

  • Image or video-based pickers


Core Settings

Allow multiple selection

Enable this setting to let responders choose more than one answer.

Autoadvance if possible

When enabled (default), the flow will automatically advance after the responder selects a choice—but only if all other questions on the step are already answered.

Autoadvance is disabled when multiple selection is allowed.


Customizing choices

How to add choices

You can populate choices via:

  • Manual entry in the Choices tab

  • Bulk add from the Choice library

  • Dynamically via external API lookup or local calculation (see below)

Randomize choice order

To reduce bias, enable this setting to shuffle the display order each time the step loads.

Pin to position

When randomization is on, you can pin specific choices (e.g., “Other”, “None”) to always appear in the same position.

Choice value type

By default, values are stored as strings. You can also choose boolean or number types from the Choice value type menu.

Customizing individual choices

Each choice has a:

  • Label (shown to responder)

  • Value (stored in submission)

Optional settings include:

  • Show conditionally: Show the choice only if a condition is met.

  • Exclusive: Deselect all others if selected (available only when multiple selection is enabled).

  • Disabled: Prevent selection.

  • Checked by default: Pre-select this option when the step loads.

  • Description: Internal-only helper for admins (can be sent in payloads).

  • Media (image/video): Attach visuals to choices if Show images on choices is enabled.

You can control the appearance of image/video choices in Theme → Buttons → Select → Image.


Using the Choice Library

Formsort provides pre-built sets (e.g., U.S. states, Likert scales). Find them at the bottom of the Choices tab. Want to suggest a new one?

Adding from the choice library will replace/overwrite any existing choices.


Collecting "Other" responses

To capture custom answers:

  1. Add an “Other” option.

  2. Add a Text question that appears conditionally when “Other” is selected.


Dynamic Choice Loading

Dynamic loading is ideal when choices change frequently or are not known at build time.

Required format (choice schema)

Choices must follow this structure:

[
  {
    "label": "The first choice", // Displayed to the user
    
    "value": "choice_a",         // Stored in the answers
    
    "disabled": false,           // [Optional]: Whether the choice
                                 // is disabled
                                 
    "imageUrl": "https://..."    // [Optional]: If loading choices
                                 // for a select question with
                                 // images, the URL of the image.
  }
] 

How to configure

1. External API

  • Go to Choices → Load choices dynamically → External API → Define api source.

  • Set the URL for the API.

  • If the API response doesn’t match the required schema, use a result mapping function to transform it.

Learn more in API answers.

2. Local calculation

  • Choose Calculated locally and use TypeScript to generate choices

  • The function must return an array of objects

function myFunction(): IChoice<string>[] { // readonly line
  return [
   {
     label: string, 
     value: string
    } 
  ]
}

Caclulate locally

When calculated locally is enabled, you will be able to use Typescript to output the answers for responder.

You can write any functions you need, but at a minimum, they must return an array of objects that follow the format below.


Styling Choices

In the Style menu, use the Picker Style dropdown to choose how choices appear:

  • Buttons

  • Carousel

  • Dropdown

  • Native dropdown

  • List

  • Sliders

See comparing different approaches to specifying choices for a visual walkthrough.

For more style customization details, see .

this video
💡
Button Styling
Calculated