> ## Documentation Index
> Fetch the complete documentation index at: https://fillout.com/help/llms.txt
> Use this file to discover all available pages before exploring further.

# Allow multiple linked records creation

> Let respondents create multiple linked records in your Fillout form.

export const SupportBanner = () => {
  const titleId = React.useId();
  return <div className="support-banner" role="region" aria-labelledby={titleId}>
      <span className="support-banner__ring support-banner__ring--outer" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--middle" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--inner" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--center" aria-hidden="true" />

      <div className="support-banner__content">
        <div className="support-banner__title" id={titleId} role="heading" aria-level="2">Still have questions?</div>

        <div className="support-banner__copy">
          <span className="support-banner__line">Our team is happy to help. Start a live chat using the</span>
          <span className="support-banner__line">
            chat bubble <span className="support-banner__chat-icon" aria-hidden="true" /> in the bottom right, or email us at
          </span>
          <span className="support-banner__line">
            <a href="mailto:support@fillout.com">support{'@'}fillout.com</a>
          </span>
        </div>

        <a className="support-banner__cta" href="mailto:support@fillout.com">Contact us</a>
      </div>
    </div>;
};

## How it works

If your form includes a [record picker field](https://www.fillout.com/help/record-pickers) that allows [creating new records](https://www.fillout.com/help/create-new-linked-records#create-new-linked-records), respondents can add multiple linked records in one form.

When filling it out, they’ll see an `+ Add` button. Clicking it opens a dropdown. If there are existing records, they’ll appear there. If not, the list will be empty.

They can click `+ Create new` to open a subform and add a linked record. To add more, they simply need to click the two buttons mentioned.

<Frame>
  <img src="https://mintcdn.com/fillout-005a867b/VqdMakh4zdNbhKlE/images/Multiple-linked-records.gif?s=18d9f5f9d025342f0c0c116b05f4e05b" alt="Multiple Linked Records" width="1660" height="1080" data-path="images/Multiple-linked-records.gif" />
</Frame>

## How to enable adding two or more linked records

Click your **record picker** followed by its `gear icon`  <Icon icon="gear-complex" iconType="solid" />. Then, Toggle `Can select multiple?`. 

<img src="https://mintcdn.com/fillout-005a867b/oXtYHDedElVtWp1p/images/Screenshot-2026-04-21-at-6.12.29-PM.png?fit=max&auto=format&n=oXtYHDedElVtWp1p&q=85&s=acc4ac93b08f51d7735b055258884065" alt="Screenshot 2026 04 21 At 6 12 29 PM" title="Screenshot 2026 04 21 At 6 12 29 PM" style={{ width:"65%" }} width="1467" height="661" data-path="images/Screenshot-2026-04-21-at-6.12.29-PM.png" />

<Note>
  Make sure [Can create new records](https://www.fillout.com/help/create-new-linked-records#create-new-linked-records) is enabled in order for this feature to work.
</Note>

You can change the default button label (Add) to your preferred text. In the right-hand panel, scroll down to **Button display** and edit the text from there.

<img src="https://mintcdn.com/fillout-005a867b/oXtYHDedElVtWp1p/images/Screenshot-2026-04-21-at-6.39.03-PM.png?fit=max&auto=format&n=oXtYHDedElVtWp1p&q=85&s=199abfdf889f96ae9d0c600e3e3fe8ec" alt="Screenshot 2026 04 21 At 6 39 03 PM" title="Screenshot 2026 04 21 At 6 39 03 PM" style={{ width:"24%" }} width="471" height="539" data-path="images/Screenshot-2026-04-21-at-6.39.03-PM.png" />

## Set minimum and maximum limits

You can control how many records respondents can create (or select). Click your **record picker** followed by its`gear icon` <Icon icon="gear-complex" iconType="solid" />. In the right-hand panel, scroll down to **Validation**.

<img src="https://mintcdn.com/fillout-005a867b/oXtYHDedElVtWp1p/images/Screenshot-2026-04-21-at-6.45.43-PM.png?fit=max&auto=format&n=oXtYHDedElVtWp1p&q=85&s=fc386f8235c43191db4a832b75dd5dcd" alt="Screenshot 2026 04 21 At 6 45 43 PM" title="Screenshot 2026 04 21 At 6 45 43 PM" style={{ width:"26%" }} width="471" height="508" data-path="images/Screenshot-2026-04-21-at-6.45.43-PM.png" />

Choose to enable `Require minimum records` and/or `Limit maximum records`, then set your preferred numbers.

### Common use cases

* **Team Management:** Add multiple employees in a single submission
* **Expense Tracking:** Record multiple expenses in one form
* **RSVPs:** Let respondents log data of multiple guests and their details
* **Requests:** Submit multiple product requests or support tickets in one form

<SupportBanner />
