> ## 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.

# Prevent duplicate submissions in Airtable

> Prevent duplicate form submissions from being saved to Airtable using Fillout.

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>;
};

## Enable duplicate prevention

<Steps>
  <Step title="Link your form to Airtable">
    In the `Integrate` page, select `Airtable`. Then, connect to your Airtable account if you haven't yet.

    <img src="https://mintcdn.com/fillout-005a867b/NAcRDOGnlYuurtkT/images/Screenshot2025-02-11at4.12.50PM.png?fit=max&auto=format&n=NAcRDOGnlYuurtkT&q=85&s=f0568003f917d34160e2e7e77c1306df" alt="Screenshot of the Form designer tab of a form" width="2682" height="1449" data-path="images/Screenshot2025-02-11at4.12.50PM.png" />

    <Info>
      This feature is available to **Business** and **Enterprise** users. For more details on pricing, click [here](https://www.fillout.com/pricing).
    </Info>
  </Step>

  <Step title="Turn on duplication prevention">
    Under **Advanced**, enable the `Prevent duplicates?` toggle.

    <img src="https://mintcdn.com/fillout-005a867b/NAcRDOGnlYuurtkT/images/Screenshot2025-02-11at4.13.20PM.png?fit=max&auto=format&n=NAcRDOGnlYuurtkT&q=85&s=b12f30920cb91c61391f8450674510fe" alt="Screenshot of the Form designer tab of a form" width="1834" height="327" data-path="images/Screenshot2025-02-11at4.13.20PM.png" />

    Next, pick the field to base duplication checks on. In this example, we will prevent submissions from getting saved to Airtable if they match another entry in the Product Name field.

    <Warning>
      This feature currently works with email and single line fields. Support for other Airtable fields is on our roadmap.
    </Warning>
  </Step>

  <Step title="Publish and share">
    That’s it! Your form will no longer create duplicate entries. Make sure to `Publish` your form to make the changes reflect.
  </Step>
</Steps>

## Airtable specific guides

<CardGroup cols={3}>
  <Card title="Add signatures to Airtable" icon="signature" iconType="regular" color="#FFC738" href="/help/airtable-signature-form">
    Upload signatures from a custom Fillout form.
  </Card>

  <Card title="Airtable Scheduling" icon="calendar-arrow-up" iconType="regular" color="#FFC738" href="/help/airtable-scheduling">
    Schedule meetings and sync them directly to Airtable.
  </Card>

  <Card title="Collect payments with Stripe" icon="file-invoice-dollar" iconType="regular" color="#FFC738" href="/help/stripe-payments-to-airtable">
    Create new records for every purchase.
  </Card>
</CardGroup>

<SupportBanner />
