> ## Documentation Index
> Fetch the complete documentation index at: https://fillout-005a867b-dependabot-npm-and-yarn-socket-io-parser-4.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Create multiple Airtable records with a form

> Make a Fillout form that creates multiple Airtable records at once, in different tables. Tie linked records together automatically with your 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>;
};

## Option 1: Use a subform

If you want the respondent to choose how many linked records they would like to create, enable `Can create new records` on the linked record picker. More details [here](/create-new-linked-records).

You can fully customize the form that appears for adding the linked records.

<iframe width="100%" height="420" src="https://www.loom.com/embed/5000bc8b87c74acca5fe5cd96fecf3e4" title="Create new linked records with a subform" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowFullScreen />

## Option 2: Combine multiple forms

You can combine multiple Fillout forms into one form and pass information between forms using URL parameters with this [feature](/combine-and-repeat-forms). Your respondents won’t know they are filling out multiple forms.

<img src="https://mintcdn.com/fillout-005a867b-dependabot-npm-and-yarn-socket-io-parser-4/KKmYfTaGUE6kYImk/images/Screenshot2025-11-10at4.11.32PM.png?fit=max&auto=format&n=KKmYfTaGUE6kYImk&q=85&s=9e8a3df1324363ff443fbc7f5a7cc9da" alt="Screenshot 2025-11-10 at 4.11.32 PM.png" width="2020" height="1066" data-path="images/Screenshot2025-11-10at4.11.32PM.png" />

For organizational purposes, you can organize your forms together on the home page using [workspaces](/workspaces).

## Option 3: Repeat a form

Let respondents choose to restart the form with a `Fill again` button or automatically redirect the user to the start of the form using the `URL button`. Both are found in the **Ending** page on the left-hand panel. More details [here](/combine-and-repeat-forms).

<img src="https://mintcdn.com/fillout-005a867b-dependabot-npm-and-yarn-socket-io-parser-4/hsMElHuTl8-g90me/images/Screenshot2025-05-15at8.16.53PM.png?fit=max&auto=format&n=hsMElHuTl8-g90me&q=85&s=0160aabacaa7277bd8a301e01ba7bd89" alt="Screenshot of the Form designer tab of a form" style={{ width:"40%" }} width="846" height="398" data-path="images/Screenshot2025-05-15at8.16.53PM.png" />

## Option 4: Use the Webhook integration (Advanced)

You can always use the [Webhook](/webhook) integration to connect to Make or Zapier to create multiple records. We recommend using the other approaches, since those are easier to set up.

<img src="https://mintcdn.com/fillout-005a867b-dependabot-npm-and-yarn-socket-io-parser-4/KKmYfTaGUE6kYImk/images/Screenshot2025-11-10at4.15.09PM.png?fit=max&auto=format&n=KKmYfTaGUE6kYImk&q=85&s=77b21f97aedede0a0324dcc8636c2def" alt="Screenshot 2025-11-10 at 4.15.09 PM.png" width="2166" height="862" data-path="images/Screenshot2025-11-10at4.15.09PM.png" />

## Airtable specific guides

<CardGroup cols={3}>
  <Card color="#FFC738" icon="files" iconType="regular" href="/linked-record-update" title="Choose a record to update">
    Let respondents choose from your form.
  </Card>

  <Card color="#FFC738" icon="square-caret-down" iconType="regular" href="/select-linked-airtable-records" title="Select records in a dropdown">
    Link your record picker and filter records.
  </Card>

  <Card color="#FFC738" icon="folder-medical" iconType="regular" href="/record-pickers" title="Working with linked record pickers">
    Set pre-fills, reference fields, and more.
  </Card>
</CardGroup>

<SupportBanner />
