Most Excel trainers tell you to search ‘org chart template’ in File > New. They’re wrong. Microsoft removed every working org chart template from Excel in 2021 — and hasn’t replaced them. What you get now is either a blank SmartArt placeholder or a broken Visio import that crashes on datasets over 12 people.
The Problem
You open Excel. You type ‘org chart’ into the template search bar. You click ‘Organization Chart’ under ‘SmartArt’. You paste your HR list: names, titles, managers. Nothing connects. Arrows float. Boxes overlap. You drag one box — three others vanish. You try to update a manager’s name in column C, and the chart ignores it completely.
This isn’t user error. It’s design failure. SmartArt org charts don’t link to cell data. They’re static drawings. You’re not building a chart — you’re redrawing by hand every time someone gets promoted.
| Name | Title | Reports To | Start Date |
|---|---|---|---|
| Sarah Chen | Director, Procurement | Mark Delgado | 2022-06-14 |
| James Wu | Sr. Buyer | Sarah Chen | 2023-02-01 |
| Amina Patel | Procurement Analyst | Sarah Chen | 2023-09-11 |
| Mark Delgado | VP, Operations | Linda Torres | 2021-03-22 |
| Linda Torres | COO | — | 2020-07-05 |
| Diego Mendoza | Logistics Coordinator | James Wu | 2024-01-18 |
| Tasha Boone | Vendor Compliance Specialist | Amina Patel | 2024-03-15 |
This is your raw data — A1:D8. And yes, it’s clean. But Excel’s ‘org chart’ feature won’t read it. Not even close.
The Solution
Do this instead. It takes 3 minutes. No add-ons. No macros. Uses only native Excel features.
- Insert a hierarchy-ready shape: Go to Insert > Shapes > Rectangle. Draw one box in cell F2. Type “Linda Torres”. Format fill: #0f766e, font white, bold.
- Build the tree manually but smartly: In G2, insert another rectangle. Type “Mark Delgado”. Right-click → Format Shape → Size & Properties → Position. Set Horizontal: 350 pt, Vertical: 120 pt. That places it directly below Linda — no dragging.
- Link to live data: In G2’s rectangle, right-click → Edit Text. Type
=B5(since Mark’s title is in B5). Now his title auto-updates if HR changes it. - Add connectors that stick: Go to Insert > Shapes > Line Arrow. Click center of Linda’s box (F2), drag to center of Mark’s box (G2). Right-click arrow → Format Shape → Line → Width: 1.5 pt.
- Repeat for Sarah (B2) under Mark: Place rectangle at H2 (Horizontal: 550 pt, Vertical: 200 pt). Type
=B2. Connect with arrow from G2 to H2. - Final check: Change B2 from “Director, Procurement” to “Head of Strategic Sourcing”. Watch H2 update instantly. That’s your live org chart.
Here’s what your final layout looks like — fully editable, pixel-perfect, and tied to A1:D8:
| Position | Cell Reference | Content | Updates When… |
|---|---|---|---|
| COO | F2 | Linda Torres | A5 changes |
| VP, Operations | G2 | =B5 | B5 changes |
| Director, Procurement | H2 | =B2 | B2 changes |
| Sr. Buyer | I2 | =B3 | B3 changes |
| Procurement Analyst | J2 | =B4 | B4 changes |
Surprising tip: Don’t use AutoShapes from the Drawing toolbar. Use Insert > Shapes — those shapes retain cell anchoring. The old Drawing toolbar shapes detach when you scroll.
Going Further
You can scale this to 50+ people. Just keep your source data in order: top-down, CEO first, each person directly under their manager.
For color-coding departments: Add a helper column E with formulas like =IF(ISNUMBER(SEARCH("Procurement",B2)),"#0f766e","#c9a962"). Then use Alt + H + H to open Fill Color, and paste the hex code manually (yes, Excel accepts hex in the color dialog).
Need tooltips? Right-click any shape → Insert Comment. Type “Reports to: =C2”. It shows on hover — no VBA required.
Want automatic layout? Copy your A1:D8 range. Paste into PowerPoint > Insert > SmartArt > Hierarchy > Horizontal Organization Chart. It links live. Then copy-paste back to Excel as a picture — but only if you need print-only output.
When NOT to Use This
Don’t use this method if your org has matrix reporting (e.g., someone reports to two people). Excel shapes can’t show dual arrows cleanly — use Lucidchart or draw.io instead.
Avoid it if your HR data lives in Workday or BambooHR. Pulling live API data into Excel shapes breaks on refresh. Export CSV first.
Don’t bother if you need real-time permissions tracking. Shapes can’t enforce edit restrictions per level. Use SharePoint + Power Apps for that.
If your chart must fit on one printed page at 100% zoom, stop at 12 people. Beyond that, use landscape layout and group boxes by function (e.g., “Procurement Team” as one merged shape with names inside).
Keyboard Shortcuts
| Action | Shortcut | Notes |
|---|---|---|
| Open Format Shape pane | Ctrl + 1 | Works on selected shape or cell |
| Insert shape | Alt + N + S | Then arrow keys to pick rectangle/arrow |
| Apply fill color | Alt + H + H | Opens color picker — paste hex codes |
| Group selected shapes | Ctrl + G | Critical for moving whole branches |
| Edit shape text | F2 | Same as editing cell content |