Six real failures that hit architects every time they use a downloaded CAD file — with the exact commands and steps to fix each one fast.
01 — The File Opens at the Completely Wrong Scale
What it looks like: You insert a window block and it appears as a 0.003mm sliver — or a door that’s 300 meters wide. The geometry is there, but useless.
This is almost always a metric vs. imperial mismatch. A door drawn at 900 units reads as 900mm in a metric project but a monstrous 22.86 meters if your drawing is set to inches. Most CAD files online don’t declare which system they used.
The Fix
Before inserting anything, check the source unit system. In AutoCAD:
UNITS → confirm unit system before doing anything else
If you’re receiving an Imperial file into a metric project, scale by exactly × 25.4 (inches → millimeters) or ÷ 25.4 (millimeters → inches).
Revit users: When linking a CAD file, the “Import Units” dropdown is the single most important setting. If the original was drawn in feet and Revit imports it as millimeters, your five-story building becomes a five-story matchbox.
02 — The Font Substitution Nightmare
What it looks like: All the text in the file becomes strings of question marks, or switches to a completely wrong typeface — throwing off every dimension and annotation.
AutoCAD uses two font systems: TrueType fonts and its own proprietary SHX fonts. SHX files like romans.shx, simplex.shx, and isocp.shx are not bundled by default. If the original drafter used a custom firm SHX font, your installation simply doesn’t have it.
The Fix
When AutoCAD shows the substitution dialog, don’t just click through. Make deliberate choices:
- For annotation text: substitute with
txt.shx— it’s the most universal - For dimension text:
romans.shxmatches what most international firms use - Use the
STYLEcommand to see every text style and which fonts they reference - For missing SHX files: download from Autodesk forums, place in your AutoCAD font directory
C:\Users\[username]\AppData\Roaming\Autodesk\AutoCAD [version]\[lang]\Fonts\
03 — Layer Chaos — 200 Layers, None Named Right
What it looks like: You open a file and the layer panel explodes with names like FINAL FINAL, a-wall, Layer1, DO NOT DELETE — stacked from three different firms.
CAD files accumulate layer history. A file that’s passed through three firms, two countries, and a renovation project carries every firm’s naming convention on top of each other. ISO 13567 and AIA Layer Guidelines exist — almost nobody follows them consistently.
The Fix
Never import directly into your live project. Run this sequence in an isolated file first:
- Open the downloaded file in a blank drawing
- Use
LAYMRGto consolidate — merge all wall layers into one, furniture into one - Use
PURGE → Allto delete empty layers - Rename remaining layers to match your project convention
Batch rename tip: The free SSTools plugin for AutoCAD has a wildcard layer rename function. Rename everything matching *WALL* to your standard in one step.
If the chaos is irredeemable: select only the geometry you need, copy to clipboard, paste into your project. You import the objects — not 200 layers of dead history.
04 — The Wrong AutoCAD Version
What it looks like: AutoCAD refuses to open the file, or opens it with a warning that objects “were created in a newer version and may not display correctly.”
AutoCAD’s DWG format is not backward compatible. A file saved in AutoCAD 2024 uses format AC1032; AutoCAD 2010 uses AC1024. If you’re on an older license — or passing files to a contractor still on 2014 — you’ll hit these walls constantly.
The Fix
Three options, ranked by effort:
- Easiest: Open with free Autodesk DWG TrueView — it can save-down DWG files to any older format version
- If you have access: Ask the sender to use
SAVEASand choose the older format from the dropdown - Most flexible: Open via AutoCAD Web (free with an Autodesk account, always runs current version), then re-export
Studio-wide fix: In AutoCAD’s Options → Open and Save, set a default save format. Many studios lock this to AutoCAD 2010 DWG for maximum compatibility with consultants.
05 — XREFs That Break the Moment You Move the File
What it looks like: The file looks complete on screen, but half the drawing is missing. The External References palette shows a long list of files with red “Not Found” warnings.
XREFs are essentially links to other DWG files overlaid on the base drawing. These links are stored as absolute file paths like C:\Projects\Smith Residence\Base Plan.dwg. That path will never exist on your machine — so the referenced geometry simply doesn’t appear.
The Fix
- Run
XRto open the External References palette and identify what’s missing - If you have the files: use
XREF → Change Pathto redirect each broken reference - If you don’t have the files: use
XBINDto bind any cached XREF data into the drawing - For totally missing XREFs:
XREF → Detachremoves the broken reference cleanly
Prevention — always use ETRANSMIT: When sending files to others, ETRANSMIT packages the base file and all its XREFs into a ZIP automatically, with relative paths corrected. Request this from anyone sending you complex files.
06 — The File Is 85MB for No Reason
What it looks like: A simple floor plan that should be under 1MB is somehow 85MB. AutoCAD crawls. Pan and zoom take seconds. Your fan spins up.
CAD files accumulate invisible junk. Deleted objects leave ghost data. Imported files bring proxy objects from plugins you don’t have. Raster images get embedded instead of linked. A block defined but never used can carry 50MB of nested references with it.
The Fix
Run this exact sequence — order matters:
PURGE → check "Purge nested items"
AUDIT → finds and fixes internal file errors
PURGE → run again, catches what AUDIT freed
OVERKILL → removes duplicate/overlapping geometry
PURGE → final pass
Running this sequence typically reduces bloated files by 40–80%. For embedded raster images: use IMAGEATTACH to identify them, detach, and re-link as external references. For proxy objects (from AutoCAD MEP, Architectural Desktop, or third-party plugins): EXPORTTOAUTOCAD strips them and replaces with basic geometry.
Quick Reference
| Problem | First Command | Fix Time |
|---|---|---|
| Wrong scale after download | UNITS |
2 min |
| Font substitution / ??? text | STYLE |
5–15 min |
| Layer chaos from multiple firms | LAYMRG + PURGE |
15–30 min |
| DWG version incompatibility | DWG TrueView | 5 min |
| Broken XREFs (Not Found) | XR palette |
10–45 min |
| Bloated file size / slow AutoCAD | PURGE → AUDIT → OVERKILL |
5 min |


