Introduction: Why dismember blocks and when is it necessary?

Working with blocks in AutoCAD - an integral part of creating professional drawings. Blocks allow you to group objects, simplify editing and save time. However, sometimes it is necessary return objects to their original state - for example, when you need to edit a separate element inside a block or move it to another drawing without linking it to the parent block. In such cases, the team comes to the rescue EXPLODE (or its equivalent DISPARTE in the Russified version).

But not everything is so simple: dismemberment can lead to loss of attributes, dynamic properties or relationships with external references. For example, if a block contains dynamic parameters (as in AutoCAD Mechanical), its dismemberment will deprive them of functionality. Therefore, it is important to understand when to use this operation and when it is better to use alternative methods such as editing the block in place (REFEDIT) or creating a copy and then dismembering it.

In this article we will look at:

  • πŸ”Ή Basic methods of dismemberment (classic EXPLODE and its modifications).
  • πŸ”Ή Common mistakes and how to avoid them (for example, breaking up attribute blocks).
  • πŸ”Ή Alternative Methods for working with blocks without completely destroying their structure.
  • πŸ”Ή Features in different versions of AutoCAD (2018–2026).
πŸ“Š How often do you work with blocks in AutoCAD?
Daily
Several times a week
Nearby
First time I hear

1. Commands for breaking up blocks: from simple to complex

The most obvious way is to use the command EXPLODE. It is available in several options:

  • πŸ–±οΈ Via tool belt: tab Home β†’ panel Editing β†’ button Dismember.
  • ⌨️ Via command line: enter EXPLODE (or DISPARTE) and select a block.
  • πŸ“ Via context menu: right click on the block β†’ Dismember.

However, the standard command has limitations. For example, it does not save block attributes (text labels associated with the block) - they will turn into plain text. If you need to save attributes, use the command BURST (available from version AutoCAD 2011):

Team: BURST

Select objects: [highlight block]

Difference between EXPLODE and BURST:

TeamSaves attributesWorks with dynamic blocksSupports nested blocks
EXPLODE❌ No❌ No (destroys dynamics)βœ… Yes
BURSTβœ… Yes❌ Noβœ… Yes
REFEDIT (edited on site)βœ… Yesβœ… Yes⚠️ Partially
⚠️ Attention: If the block contains OLE objects (for example, pasted Excel tables), exploding them will result in them being converted to static images. It will be impossible to restore the original data!

2. Breaking down blocks with attributes: how not to lose data

Block attributes (ATTRIBUTES) are text fields that are often used for labeling, specifications, or database links. With standard dissection, they lose connection with the block and become regular text. To avoid this:

  1. Use BURST β€” it preserves the attributes as separate text objects, but removes the connection to the block.
  2. Export attributes to table before dismemberment:
    • πŸ“Š Teams: DATAEXTRACTION β†’ select blocks β†’ export attributes to .xls or .csv.
    • πŸ”„ After dismemberment, import the data back via TABLE.
  • Create a copy of the block and dismember it, leaving the original intact.
  • Example: if you have a block "Furniture_Table" with attributes "Material" and "Price", after BURST these fields will remain text, but will lose automatic updates when the block changes.

    Save the drawing|Check for dynamic properties|Export attributes (if needed)|Back up the block-->

    3. Dynamic blocks: can they be divided without loss?

    Dynamic blocks (Dynamic Blocks) are blocks with parameters (for example, stretchable doors or resizable windows). Their dismemberment leads to complete loss of functionality: all parameters, actions (Stretch, Rotate) and restrictions disappear.

    Alternative solutions:

    • πŸ”§ Editing in place (REFEDIT): allows you to change the geometry of a block without destroying it.
      Command: REFEDIT
      

      Select block: [click on dynamic block]

    • πŸ“ Creating a new block: Copy geometry from a dynamic block to a new static block.
    • πŸ”„ Export to another format: save block as .dwg and import back without dynamic properties.
    ⚠️ Attention: If a dynamic block contains state visibility (for example, different types of furniture), dismemberment will leave only the current visible state. Other options will be lost!
    What to do if dynamic properties disappear after dismemberment?

    It is impossible to restore them - dynamic parameters are stored in block metadata, which are destroyed when dismembered. The only way out is to cancel the action (UNDO) or reinsert the original block. If the drawing is not saved, try the command OOPS (restores the last deleted objects).

    4. Exploding nested blocks: procedure

    If a block contains other (nested) blocks within it, standard division can lead to chaos: all objects will β€œspread” into layers, and the hierarchy will be lost. To control the process:

    1. Explode only the outer block, leaving the nested ones untouched:
      Command: EXPLODE
      

      Select objects: [click on external block]

      Nested blocks will remain blocks, but will lose their connection to the parent.

    2. Use NCOPY to copy nested blocks:
      Team: NCOPY
      

      Select nested blocks: [click on the required elements]

      This will create copies of the blocks without dismembering the originals.

    3. Apply FLATTEN to "flatten" the hierarchy (will remove all nesting but keep the geometry).

    Example: you have a block "Kitchen", inside which blocks are nested "Table" and "Chair". After dismemberment "Kitchen" blocks "Table" and "Chair" will remain blocks, but their position relative to each other may change if they were snapped to a parent block.

    πŸ’‘

    Before exploding nested blocks, enable the LAYISO (layer isolation) to hide unnecessary objects and avoid random selection.

    5. Features of dismemberment in different versions of AutoCAD

    Command functionality may vary depending on version AutoCAD. Below are the key differences:

    VersionTeam EXPLODETeam BURSTDynamic block support
    2010 and olderβœ… Basic functionality❌ Noβœ… Yes (but dismemberment destroys dynamics)
    2011–2017βœ… Improved work with nested blocksβœ… Addedβœ… Yes
    2018–2022βœ… Optimized for large drawingsβœ… Saves attributes in the format ATTEXTβœ… Yes + warnings when dismembering
    2023–2026βœ… Support for cloud blocks (AutoCAD Web)βœ… Advanced settingsβœ… Yes + partial saving of parameters

    B AutoCAD 2026 opportunity arose partial dismemberment: You can choose which block elements to leave untouched. To do this:

    1. Select a block.
    2. At the command prompt, enter EXPLODE β†’ click Enter.
    3. In the dialog box that appears, uncheck the objects that do not need to be exploded.

    6. Alternatives to dismemberment: when is it better not to destroy a block?

    Dismemberment is not always the optimal solution. In some cases it is better to use other methods:

    • πŸ”„ REFEDIT (edited on site): Allows you to change the geometry of a block without destroying it. Suitable for correcting minor errors.
    • πŸ“„ WBLOCK (creating a new block file): exports the block to a separate file .dwg, where it can be edited and imported back.
    • πŸ” BEDIT (block editor): Opens the block in isolated mode for deep editing.
    • πŸ“ COPY + PASTEORIG: Copies the geometry of a block without exploding it (useful for transferring elements to another drawing).

    Example: if you need to change the size of a hole in a block "Part_001", instead of dismemberment:

    1. Enter BEDIT β†’ select a block.
    2. Edit the geometry in the block editor.
    3. Save changes (BCLOSE).

    All block instances in the drawing are updated automatically.

    πŸ’‘

    Dismember blocks only as a last resort. In 80% of tasks, in-place editing is sufficient (REFEDIT) or working in the block editor (BEDIT).

    7. Common mistakes and how to avoid them

    Error 1: Exploding a block with external links (XREF).

    If the block is linked to an external file (.dwg), dismembering him will break the connection. The xref will disappear and the objects will become static geometry. To avoid this, use BIND (external link binding) before exploding.

    Error 2: Loss of layers and object properties.

    Exploding objects may move to the layer "0" or inherit block properties. Before operation, check the command settings EXPLODE:

    Command: EXPLODE
    

    Enter [Objects/Save Layers] mode: SAVE

    Error 3: Explode blocks with annotative scales.

    Annotative blocks (with multiple display scales) lose this functionality after being exploded. To maintain scalability, use ANNOUPDATE after surgery.

    ⚠️ Attention: If the block contains 3D bodies (for example, in AutoCAD Mechanical), their dissection can lead to separation into separate faces. To work with 3D use the command SOLIDEDIT β†’ Body β†’ Separate.
    Is it possible to undo block exploding?

    Yes, if you have not saved the drawing yet. Use the command UNDO (or OTMENIT in the Russified version). If the drawing is saved, try OOPS β€” it restores the last deleted objects. However, the dynamic properties and attributes of blocks cannot be restored after dismemberment.

    Why does a block disappear from the list after dismemberment? INSERT?

    Because the team EXPLODE Destroys the block definition in the drawing. If you need to save a block for later use, create a copy of it (COPY) before dismembering or export to a separate file (WBLOCK).

    How can I explode a block but keep its color and linetype?

    Default EXPLODE resets object properties to block-by-block values. To keep the original settings, use the command with the option:

    Command: EXPLODE
    

    Select objects: [click on the block]

    Enter [Objects/Save Properties] mode: SAVE

    Is it possible to explode a block in AutoCAD LT?

    Yes, in AutoCAD LT command available EXPLODE, but missing BURST and some advanced options (for example, partial dismemberment in versions 2023+). Also, LT does not have a dynamic block editor (BEDIT), so dismembering dynamic blocks will result in the loss of all parameters.

    What should I do if, after dismemberment, the drawing begins to lag?

    Exploding large blocks (with thousands of objects) can overload the drawing. Solutions:

    • 🧹 Clean the drawing with command PURGE (will delete unused data).
    • πŸ” Use QSELECT to select and delete unnecessary objects.
    • πŸ’Ύ Save the drawing and restart AutoCAD.