Blocks are one of AutoCAD’s biggest time-savers. They let you turn a collection of objects into a single reusable component — a door, a fixture, a title block — that you can place hundreds of times and update everywhere at once. Add attributes and dynamic behavior, and a block stops being a static symbol and becomes intelligent. Here’s how all three work.

What a block is

A block is a named object definition stored in the drawing. Every time you insert it, you’re placing an instance of that definition. The power: edit the definition once and every instance updates. Blocks standardize drawings, reduce file size, and keep repeated elements consistent across the whole sheet set.

Creating a block (and the mistakes to avoid)

  1. Draw the geometry on Layer 0. This is the single most common beginner mistake to avoid — geometry on Layer 0 inherits the layer it’s inserted onto, which is what you usually want.
  2. Type B (BLOCK) to open the Block Definition dialog.
  3. Name it clearly with a convention, e.g. Door_Single_900.
  4. Set the base point carefully. Click Pick Point and choose a logical insertion point (a corner, a center) — this is where the block “grabs” when placed, so a sloppy base point causes endless alignment pain.
  5. Select the objects and click OK.

To save a block as its own DWG file for use in other drawings, use WBLOCK (write block). To place blocks, use the Blocks palette, INSERT, ADCENTER, or Tool Palettes — these let you pull blocks from external files without opening them. One gotcha: if insertion scale looks wrong, check the INSUNITS setting — if it’s 0, AutoCAD won’t apply unit conversion.

Block, attribute, dynamic block Block Many objects → one reusable definition edit once, update all + Attributes data on the block type, fire rating, tag extract to a schedule + Dynamic parameters + actions stretch, flip, visibility one block, many sizes

Attributes: adding data

Attributes attach text-based information to a block — a tag number, a door type, a fire rating, a finish. Where dynamic behavior adds intelligence to a block’s geometry, attributes add intelligence to its text. You define them with ATTDEF (Define Attribute) before creating the block, giving each a tag, prompt, and default value (note: AutoCAD doesn’t allow spaces in attribute tags — use underscores). Select the attributes along with the geometry when you make the block, and from then on AutoCAD prompts you to fill in the data on every insert.

The real payoff comes later: run EATTEXT (Extract Attribute Text) and AutoCAD scans the drawing, finds every block with attributes, and pulls the data into a table — an instant door or fixture schedule. If you edit an attribute definition afterward, run ATTSYNC to push the change to existing instances.

Dynamic blocks: adding behavior

A dynamic block can change size, shape, or configuration after it’s placed — so instead of three separate door blocks for 800, 900, and 1000 mm, you make one that stretches to any size. You build this in the Block Editor using the Block Authoring Palettes, which provide two ingredients:

  • Parameters — define what can change (a linear parameter for width, a flip parameter for mirroring).
  • Actions — tell the parameter what to do (a stretch action tied to the linear parameter).

After insertion, selecting the block reveals blue grips you drag to stretch or flip. A particularly powerful feature is Visibility States, which let one block hold several configurations — say a window’s plan, elevation, and section — switchable from a dropdown. That’s far tidier than juggling three separate blocks.

Putting it together

The combination is where it shines: dynamic door blocks that resize, each carrying attributes for type and hardware, then extracted into a door schedule with one command. A few production notes — editing a dynamic instance can create an “anonymous block” (normal, it stores that instance’s unique values), and heavy use of dynamic blocks with large lookup tables can slow big drawings, so use them with judgment. Build a small library of well-made blocks and your drafting speed climbs dramatically.

Part of our AutoCAD & drafting series. Next: model space vs paper space — layouts explained.