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

# Date

> Collect a single date, date and time, or date range from your respondents. This is useful for bookings, events, and availability tracking. 

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

## Date fields vs Scheduling page

**Date fields** (Date picker, Date time picker, and Date range) collect a date input. Common use cases include:

* Asking a respondent's date of birth
* Collecting project deadlines
* Gathering travel or vacation dates
* Tracking project start and end dates
* [Collecting multiple availabilities](https://www.fillout.com/help/date-range#collect-multiple-availabilities)

On the other hand, **Scheduling pages** reserve available time slots on an individual's calendar (Google or Outlook calendar).

| Date Fields                   | Scheduling Page                        |
| ----------------------------- | -------------------------------------- |
| Collects a date or time input | Books a real calendar slot             |
| No calendar integration       | Connects to Google or Outlook Calendar |
| No availability checking      | Shows live availability                |
| No automatic booking          | Automatically creates calendar event   |
| Best for general forms        | Best for appointments & meetings       |

This article is about date fields. To know more about scheduling pages, check out [this guide](https://www.fillout.com/help/scheduling-page).

## How to add a date field

In the left-hand panel of your form, drag and drop your chosen **date field**. You can pick between:

* **Date picker** - collects a single date
* **Date time picker** - collects a date and time
* **Date range** - lets respondents select start and end dates in your forms

In our example, we'll select `Date range`.

<img src="https://mintcdn.com/fillout-005a867b/Ez63Uc0rY1bU_cVR/images/Screenshot2025-10-02at6.31.40PM.png?fit=max&auto=format&n=Ez63Uc0rY1bU_cVR&q=85&s=8b8f285ec243df6fdd52e1fa70e4db48" alt="Screenshot 2025-10-02 at 6.31.40 PM.png" width="2624" height="1438" data-path="images/Screenshot2025-10-02at6.31.40PM.png" />

## Change date format and settings

To configure your field settings, click <Icon icon="gear-complex" iconType="solid" />. In the right-hand panel, you can:

* Set a default start and end date
* Change the date format and first day of the week
* Add a minimum and maximum range respondents can choose from

<img src="https://mintcdn.com/fillout-005a867b/ympaN8olM9hRm0DX/images/Screenshot2025-10-02at7.34.14PM.png?fit=max&auto=format&n=ympaN8olM9hRm0DX&q=85&s=261ba7c78fbb3d082b4f0f61d6a5b6e5" alt="Screenshot 2025-10-02 at 7.34.14 PM.png" title="Screenshot 2025-10-02 at 7.34.14 PM.png" style={{ width:"35%" }} width="474" height="1112" data-path="images/Screenshot2025-10-02at7.34.14PM.png" />

## Collect multiple availabilities

To gather several preferred dates and times from respondents, add multiple `date fields` to your form.

<img src="https://mintcdn.com/fillout-005a867b/0ElvYTgqUAVEmwnU/images/Screenshot2026-03-02at4.07.29PM.png?fit=max&auto=format&n=0ElvYTgqUAVEmwnU&q=85&s=b63717622a102b578a6773878fd469dd" alt="Screenshot 2026 03 02 At 4 07 29 PM" title="Screenshot 2026 03 02 At 4 07 29 PM" style={{ width:"63%" }} width="1206" height="958" data-path="images/Screenshot2026-03-02at4.07.29PM.png" />

## Mapping to Airtable, Notion and other databases

<Steps>
  <Step title="Add a Date field">
    Follow the [step above](/help/date-range#how-to-add-a-date-field).
  </Step>

  <Step title="Select an integration">
    Click `Integrate` in top menu and choose [Airtable](https://www.fillout.com/help/airtable), [Notion](https://www.fillout.com/help/notion) or another [database](https://www.fillout.com/help/integrations#spreadsheet-%26-database).
  </Step>

  <Step title="Map fields">
    Under [**Mappings**](https://www.fillout.com/help/additional-integration-mappings), choose the fields you want to save the start and end dates to. Reference your integration fields from the left to Fillout form fields in the right.

    <img src="https://mintcdn.com/fillout-005a867b/CKiuqsV2M8JgNFaD/images/images/image-18.png?fit=max&auto=format&n=CKiuqsV2M8JgNFaD&q=85&s=7f16fdfd1f5a6115407922336e26c44b" alt="Screenshot of the Form designer tab of a form" width="2059" height="647" data-path="images/images/image-18.png" />
  </Step>
</Steps>

## Related article

<CardGroup cols={3}>
  <Card title="Pre-fill dates" color="#FFC738" icon="calendar-days" iconType="regular" href="pre-fill-dates">
    Set the default value to today, tomorrow, or another date.
  </Card>

  <Card title="Scheduling page" color="#FFC738" icon="calendar-day" iconType="regular">
    Let respondents book a time slot on your calendar.
  </Card>
</CardGroup>

<SupportBanner />
