Every Airtable implementation starts with the same artefact: a CSV or an Excel file from the old system that someone wants in Airtable by Friday. The import is the first impression of the new system, and a sloppy import — dates as text, duplicated linked records, multi-selects split into 30 useless columns — sets the wrong tone for the whole project.
This guide covers the import options Airtable provides in 2026, the field-by-field mapping that catches most issues at import time, and the cleanup patterns for the bits that always go wrong anyway.
Your Import Options in 2026
Airtable offers three native ways to bring data in:
| Method | Best for | Row limit |
|---|---|---|
| Quick start (new base) | Starting from a CSV/Excel file with no existing base | 15,000 per file |
| Import to existing table | Adding a CSV into an existing table | 15,000 per file |
| CSV Import extension | Repeated imports into a configured table, merges into existing | 15,000 per import |
| Airtable Sync (Google Sheets) | Live, read-only mirror of a Google Sheet | No hard cap (slow at scale) |
| API / script | Programmatic imports of any size | Unlimited (10 records/batch) |
For one-time imports the first three are fine. For recurring imports on a schedule, use the CSV Import extension or a Make / Zapier scenario that runs the import for you.
Step 1: Clean the File Before You Touch Airtable
The single biggest determinant of import quality is the state of the source file. Spend 15 minutes here and save two hours of cleanup later.
In Excel or Google Sheets:
- One header row. No merged cells, no banner rows, no totals. Delete everything that is not data.
- Consistent column names. They become your Airtable field names. Rename now while it is cheap.
- One value per cell. Cells containing "Acme, Beta, Gamma" should either be split into three rows or kept as a single multi-select value — decide before import.
- Standardize date formats. Convert every date column to ISO (
2026-04-15) using a formula like=TEXT(A2,"YYYY-MM-DD"). Airtable parses ISO unambiguously. - Remove formulas. Copy and Paste Values so the import gets the calculated results, not
#REF!. - Trim whitespace. Trailing spaces in "Acme Corp " vs "Acme Corp" become two different linked records. Use
=TRIM(A2)to normalize. - Dedupe the unique key. Sort by Email (or whatever uniquely identifies a row) and delete duplicates.
For Excel workbooks with multiple sheets, decide upfront: does each sheet become a table in the same Airtable base, or do you only need one of them? Airtable imports each sheet as a separate table by default.
Step 2: Pick the Right Import Path
For a brand new base from a single file:
- From the Airtable home, click Add a base → Quick start.
- Drop in the CSV or
.xlsx. - Airtable previews the first 50 rows and proposes field types.
- Review every column. (See the field-type cheat sheet below.)
- Click Import.
For a CSV added to an existing base:
- Open the base, click the + next to the last table.
- Choose Import data → CSV file.
- Same preview and field-type screen.
- Click Import to create a new table inside the base.
For data that needs to merge into an existing table:
- Open the existing table, add the CSV Import extension from the extensions panel.
- Configure column mapping — each CSV column maps to an Airtable field.
- Choose Insert new records only or Update existing records (the extension can match on a primary field to upsert).
- Click Import.
The merge mode in CSV Import is the underused superpower — it dedupes during the import instead of creating duplicates.
Step 3: Field-Type Mapping — The Cheat Sheet
The preview screen lets you set the type of every column. Get this right before clicking Import.
| Source data | Pick this field type | Notes |
|---|---|---|
| Plain names, IDs | Single line text | Default; safe. |
| Long descriptions, notes | Long text | Watch for \n line breaks in the source. |
2026-04-15, ISO dates | Date | Set the timezone explicitly in field settings. |
4/15/2026, US dates | Date (US format) | Manually verify a few rows after import. |
| Email addresses | Validates format; flags bad data. | |
| Phone numbers | Phone | Loses leading zeros if you imported as Number. |
$1,250.00 | Currency | Strip the dollar sign and commas in the source first. |
25% | Percent | Source should be 0.25, not "25%". |
| One of: Open/Closed/Won | Single select | Airtable infers options from unique values. |
| Comma-separated tags | Multiple select | Airtable splits on commas during import. |
| Names of related companies | Single line text (for now) | Convert to Link to another record after import (see Step 5). |
| URLs | URL | Validates clickability. |
TRUE / FALSE | Checkbox | Airtable maps truthy strings. |
| Anything you are unsure about | Single line text | You can convert later. Importing as text never loses data. |
Rule of thumb: when uncertain, import as Single line text. Type conversion later is safe; importing as the wrong rich type can lose information.
Step 4: Validate the Import
Before you build anything on top of the new table, spot-check the data.
- Sort by Created Time descending and look at the bottom of the table — the last imported rows. Common failure: the last few rows truncated because of an empty line in the CSV.
- Count rows. Filter for blank primary field. Should be zero. If not, your CSV had empty rows.
- Group by Status / Type / Category (any column that should have a small set of values). Look for typos that created near-duplicate options —
ClosedvsclosedvsClosed(with space). Use single-select field settings to merge them. - Check date fields. Sort ascending and descending. Make sure 1900-01-01 or 2099-12-31 sentinels are not lurking.
- Look for stray HTML or markdown. Some sources export with
&or<br/>baked in. Find/replace cleans them. - Verify multi-select splitting. If multi-select options ended up with
Tag1, Tag2as a single option instead of two, the source was using a different separator. Reimport with the correct delimiter or split with a formula.
Step 5: Converting Text Fields to Linked Records
This is the step that hurts. CSV exports flatten relational data — every project row contains the client name as text, not as a link. After import, you want it as a linked record.
The two-pass pattern:
- Import the parent table first. Clients (or Companies, or Vendors). Make sure the primary field is the column you will match on (usually Name).
- Import the child table next. Projects. The Client column comes in as Single line text.
- Convert the column type to Link to another record and point it at the parent table.
- Airtable matches each text value against existing parent records. Exact matches link. Mismatches create new records.
This is why source-data cleanup matters. If "Acme Corp" and "Acme Corp." (trailing period) both appear in the child table but only "Acme Corp" exists in Clients, you will get a new "Acme Corp." record. Now you have two Acme records to merge.
The defensive pattern:
- Before converting, export the unique values from the child column.
- Diff them against the parent table's primary field.
- Fix mismatches in the child data first (or add the missing parents to the parent table).
- Then convert the column type.
For complex many-to-many or junction-table imports, the linked records guide covers the model in more detail.
Importing from Google Sheets
Two options:
One-time import. Download the Google Sheet as CSV (File → Download → CSV) and use the normal CSV flow. Done.
Live sync. Airtable's Google Sheets sync turns a sheet into a read-only synced table. Changes in the sheet propagate to Airtable on a schedule. Useful when the sheet remains the source of truth (e.g. a finance team that will not switch off spreadsheets) and Airtable consumes the data. The synced table is read-only in Airtable.
Sync requires a Team plan or higher.
Recurring Imports — Make This Automatic
If the same CSV will land in Airtable every week, do not import manually. Three patterns:
- CSV Import extension with merge mode — open the extension, drop the new file, hit import. The fields stay mapped between runs.
- Make scenario — watch a folder in Google Drive or Dropbox, parse the CSV, upsert into Airtable via Search + Update/Create.
- API script — for technical teams, an Airtable script or external Python job that reads the CSV and batch-creates 10 records at a time.
The Make pattern is the most common in production because it handles errors, retries, and notifications natively.
Common Mistakes
Importing before cleaning. Always cheaper to clean in Excel than in Airtable. Five minutes with TRIM and Remove Duplicates saves an hour of post-import work.
Trusting Airtable's type guesses. The preview suggests types based on the first 50 rows. If row 51 has a non-numeric value in a Number column, the whole column fails or truncates. Always glance through the preview screen even when you trust the file.
Creating linked records by accident. Most common cause of doubled Clients tables. The conversion to linked record matches by exact text. Clean the text first.
Forgetting the record cap on your plan. A free workspace caps at 1,000 records per base. Importing a 50,000-row file will fail or hit the limit and leave a partial import. Check your plan limits before importing.
Losing Excel formulas. Imported as static values. If the file relied on formulas, document the logic and rebuild it as Airtable formula fields. The formulas cheat sheet has the common translations.
Not backing up first. Before any large import into an existing base, back up the base. Imports cannot be undone with one click — they can only be reversed by deleting records, which can cascade through linked tables.
Recovering from a Broken Import
If the import has already gone wrong:
- Sort by Created Time descending to find the imported batch.
- Filter to that time window to isolate just the import.
- Select all and delete if you need to start over.
- Use revision history (Pro plan and up) to see what existed before. Right-click a record → Revision history.
- If linked records duplicated, use the Dedupe extension or a script to merge duplicates by primary field.
For very large imports gone wrong, restore the base from a snapshot (Pro plan and up) rather than picking through rows.
Where to Go Next
A successful import is the start, not the finish. Once your data is in, the next steps are usually setting up linked records, building Interface Designer pages so your team can work with the data, and adding automations for the recurring work.
For ongoing imports from external systems, see the Make automation guide. For Airtable's official import documentation, the CSV import support article is worth keeping bookmarked.