Quick Access Search All Tools Ctrl+K Help & Tool Guide

AutoCAD's TABLE command inserts a table object into a drawing — like a spreadsheet embedded in your DWG. Tables can contain text, formulas, and even live data links to Excel files.

Creating a Table

StepActionNotes
1Type TABLE at the command lineOr: Annotate tab → Tables panel → Table
2Choose a table style and set columns/rowsInsert Table dialog box appears
3Pick an insertion point or windowChoose "Specify insertion point" or "Specify window"
4Type content in cellsTab moves to next cell; Enter moves down. Formatting toolbar appears in cell.
5Click outside to finishOr press Esc to exit cell editing

Navigating Cells

KeyAction
TabMove to next cell (right)
Shift+TabMove to previous cell (left)
EnterMove to next cell (down)
Arrow keysMove between cells
F2Start editing the current cell
EscExit cell editing without saving changes

Formula Cells

Cells can contain formulas like a spreadsheet. All AutoCAD formulas start with =.

FormulaDescriptionExample
=SUM(A1:A5)Sum of cells A1 through A5Add column of quantities
=AVERAGE(B2:B10)Average of a rangeAverage unit price
=A2*B2Multiply two cellsQuantity × unit cost = total
=MAX(C1:C8)Maximum value in rangeFind largest value
=MIN(C1:C8)Minimum value in rangeFind smallest value
=COUNT(A1:A20)Count non-empty cellsCount number of items
="Width: "&A1&" mm"Concatenate text and cell valueCreate custom label
💡 Cell addresses use column letters and row numbers (like Excel): A1, B3, C5. Rows number from the top (row 1 = header or first data row). Columns letter from left: A, B, C...

Table Styles (TABLESTYLE)

Table styles control the visual appearance of tables. Create styles per project or standard.

PropertyWhat It Controls
Title row styleFont, color, background, height, alignment for the table title
Header row styleColumn heading appearance — bold, color, etc.
Data row styleAppearance of regular data cells
Grid linesVisibility and lineweight of horizontal and vertical grid lines
DirectionDown (header at top) or Up (header at bottom)

Access via: TABLESTYLE command, or Annotate → Tables → Table Style dialog launcher.

Editing Tables

TaskHow To
Edit a cellDouble-click the cell
Resize column widthClick table to select → drag column grip
Resize row heightClick table to select → drag row grip
Add a rowRight-click a cell → Rows → Insert Above/Below
Delete a rowRight-click a cell → Rows → Delete
Add a columnRight-click a cell → Columns → Insert Left/Right
Merge cellsSelect multiple cells (Shift+click) → right-click → Merge
Change cell styleDouble-click cell → use formatting toolbar at top

Data Links (Link to Excel)

Use DATALINK to connect a table to an Excel file. The table data updates when the Excel file changes.

StepAction
1Type DATALINK → click "Create a new Excel Data Link"
2Browse to the Excel file and pick the sheet/range
3In the TABLE command, pick the data link instead of empty cells
4To update: type DATALINKUPDATE or right-click → Data Links → Update

Exporting Tables

CommandWhat it Does
TABLEEXPORTExport selected table to a CSV file. Open with Excel for further editing.

Quick Tips

📌 Lock cells: Right-click selected cells → Cell Locking to prevent accidental edits to formula cells or headers.
📌 Field codes in cells: You can insert fields (date, drawing name, sheet number, etc.) into table cells via Insert → Field from the cell editor.
Formula limits: AutoCAD table formulas are simpler than Excel. No IF(), VLOOKUP(), or complex logical functions. Use Data Links if you need complex spreadsheet logic.