OfficeCLI XLSX Skill
Setup
- macOS / Linux:
curl -fsSL https://d.officecli.ai/install.sh | bash
- Windows (PowerShell):
irm https://d.officecli.ai/install.ps1 | iex
Verify with
(open a new terminal if PATH hasn't picked up). If install fails, download a binary from
https://github.com/iOfficeAI/OfficeCLI/releases.
⚠️ Help-First Rule
This skill teaches what good xlsx looks like, not every command flag. When a property name, enum value, or alias is uncertain, consult help BEFORE guessing.
bash
officecli help xlsx # List all xlsx elements
officecli help xlsx <element> # Full element schema (e.g. pivottable, chart, cf)
officecli help xlsx <verb> <element> # Verb-scoped (e.g. add chart, set cell)
officecli help xlsx <element> --json # Machine-readable schema
Help reflects the installed CLI version. When this skill and help disagree, help is authoritative.
Shell & Execution Discipline
Shell quoting (zsh / bash). Excel paths contain
, and number formats contain
. Both are shell metacharacters. Rules:
- ALWAYS quote element paths: , not .
- Use single quotes for any prop value containing : .
- For formulas with cross-sheet references, use with a heredoc (see Known Issues).
- and in a prop value ARE interpreted by the CLI — is a real in-cell line break (pair with ), a tab — consistent across xlsx / docx / pptx. Double them () for a literal backslash-n (rarely wanted). ( is the shell layer above — single-quote it.)
Incremental execution. Run commands one at a time and read each exit code.
mutates the file on every call; a 50-command script that fails at command 3 will cascade silently. One command → check output → continue.
Requirements for Outputs
Before reaching for a command, know what a good xlsx looks like. These are the deliverable standards every workbook MUST meet.
All Excel files
Zero formula errors. Every delivered workbook MUST have ZERO
,
,
,
,
. No exceptions — guard denominators with
or
.
Formulas, not hardcoded values. If a number can be computed from other cells, it is a formula. Hardcoding
where
belongs breaks the contract that the workbook stays live when inputs change. This is the single most important rule in this skill.
Professional font. Use one consistent, professional font across the workbook (Arial / Calibri / Times New Roman). Don't mix four fonts because one sheet came from CSV.
Explicit widths. There is no auto-fit. Any column the user will read MUST have
set — default 8.43 chars clips everything. Sensible starts: labels 20-25, numbers 12-15, dates 12, short codes 8-10.
Preserve existing templates. When editing a file that already has a look, match it. Existing conventions override these guidelines.
Visual delivery floor (applies to EVERY workbook)
Before you declare done, run
officecli view "$FILE" html
and Read the returned HTML path to confirm all of these:
- No in any cell. means a column is too narrow for its widest value. Every column the user reads needs an explicit . in a delivered file is unfinished work, never "a small visual nit".
- No truncated titles. Sheet titles, section headers, long labels must fit. Widen the column or apply on the cell.
- No placeholder tokens rendered as data. , , , must never appear in a cell, chart title, series name, or legend. These are build-time tokens that escaped replacement.
- Pie / doughnut slices have distinct fill colors. If the slices render same-colored, switch to / or set explicitly.
- No empty trailing pages / empty chart anchors. over empty source cells looks like a broken chart.
If any of the above fails, STOP and fix before declaring done.
Print layout. Any sheet the user may print or send as a board pack needs page setup. Default portrait + no fit-to-page splits wide tables and charts mid-way. Pick the fit mode by sheet shape:
bash
# Summary / chart / dashboard sheet (small, ≤ ~40 rows): fit to a single page.
officecli set "$FILE" "/Summary" --prop orientation=landscape --prop fitToPage=true
# Tall data table (dozens+ rows): fit WIDTH only, let height paginate naturally.
# fitToPage=true here crushes every row onto one page → unreadable (### dates, 5px rows).
officecli set "$FILE" "/Data" --prop orientation=landscape --prop fitToPage=1x0
==
== fit both axes to one page — correct only when the sheet is already short.
= fit 1 page wide, unlimited pages tall. Trigger: sheet holds a chart, or > 8 columns, or the user's ask mentions print / board / investor.
Financial models only — skip this section if you are building a template, tracker, CSV import, or operational sheet
Scope: budgets, forecasts, 3-statement models, valuation, any
-heavy analytical workbook. A customer-support tracker or onboarding template does not need this section.
Color coding — industry standard. Five core colors used as a language, not decoration. A reviewer should tell what a cell IS by color alone — before reading the formula.
| Color | Role | Example |
|---|
| Blue text | Hardcoded inputs, scenario variables | |
| Black text | ALL formulas and calculations | default |
| Green text | Cross-sheet links inside this workbook | |
| Red text | Links to external files / workbooks | |
| Yellow fill | Key assumptions needing review | |
A reviewer should tell what a cell IS just by its color — before reading the formula. This is a communication contract, not a cosmetic preference.
Number formatting — standards, not preferences.
- Years are text, not numbers. Format not — use or set .
- Currency carries its unit in the header (), not in every cell.
- Zeros display as , not . Use .
- Percentages default to one decimal: .
- Negatives use parentheses: not .
- Valuation multiples use format (EV/EBITDA, P/E, etc.).
Assumptions live in cells, not inside formulas. is correct;
is a bug. Document each blue hardcoded input with an adjacent source note in the next cell or a cell comment:
Source: Company 10-K, FY2024, Page 45, Revenue Note
Source: Bloomberg, 2026-05-02, AAPL US Equity
Source: Management guidance, Q2 2026 earnings call
Any hardcoded number without a source is an undocumented assumption — a reviewer cannot audit it.
Common Workflow
Six steps. Every non-trivial build follows this shape.
- Open/save lifecycle. Use at the start and at the end to flush to disk — only writes and leaves the resident warm for follow-up edits; reach for only to release the resident on a one-shot handoff. Both are always safe (never error or lose work). For many cells, use : ≤ 50 ops/block recommended; tested up to 80+ ops per block on pure value-set payloads with zero failures. Cross-sheet formula batches are the exception — run those non-resident, single heredoc (see Known Issues). Flush only at the non-officecli boundary: officecli's own reads always see your edits; run / only before a non-officecli program reads the file (openpyxl/pandas, Excel, a renderer, delivery).
- Create or load. (new) or
officecli view "$FILE" outline
(existing — get the lay of the land first).
- Build incrementally. One command, read the output, continue. After any structural op (new sheet, chart, named range, pivot), run on it to confirm shape before stacking more on top.
- Format. Column widths, number formats, freeze panes, tab colors, header fills. Formatting is not optional polish — per "Requirements for Outputs" it is part of the deliverable.
- Save, then reckon with the cache. writes to disk. Newly-added formulas ship without cached values; when a human opens the file in a spreadsheet app, the app recalculates and populates them. But your downstream , , or any formula that references an upstream formula will cache whatever the upstream cached at write-time — often or a stale value — and that cached lie survives into non-recalculating readers. After any multi-formula build involving array formulas (, with dynamic criteria) or cross-sheet chains, re-touch every downstream cell (run again with the same formula) so the engine recomputes its cache from the freshly-cached upstream. ⚠️ Re-touch on cross-sheet chains via resident is unreliable (see Batch / resident caveats) — prefer non-resident for the re-touch pass. Then a few downstream cells and eyeball that their is plausible. is safe with a resident open and itself flushes pending edits to disk (same as docx / pptx).
- QA — assume there are problems. See the QA section. You are not done when your last command exited 0; you are done after one fix-and-verify cycle finds zero new issues.
Quick Start
Minimal viable xlsx: 3 months of revenue + a total formula + column widths + a currency format. Adapt, don't copy-paste — your file, your data.
bash
officecli create "$FILE"
officecli open "$FILE"
officecli set "$FILE" /Sheet1/A1 --prop value=Month --prop bold=true
officecli set "$FILE" /Sheet1/B1 --prop value=Revenue --prop bold=true
officecli set "$FILE" /Sheet1/A2 --prop value=Jan
officecli set "$FILE" /Sheet1/A3 --prop value=Feb
officecli set "$FILE" /Sheet1/A4 --prop value=Mar
officecli set "$FILE" /Sheet1/B2 --prop value=42000 --prop numFmt='$#,##0'
officecli set "$FILE" /Sheet1/B3 --prop value=45000 --prop numFmt='$#,##0'
officecli set "$FILE" /Sheet1/B4 --prop value=48000 --prop numFmt='$#,##0'
officecli set "$FILE" /Sheet1/A5 --prop value=Total --prop bold=true
officecli set "$FILE" /Sheet1/B5 --prop formula="SUM(B2:B4)" --prop bold=true --prop numFmt='$#,##0'
officecli set "$FILE" "/Sheet1/col[A]" --prop width=12
officecli set "$FILE" "/Sheet1/col[B]" --prop width=15
officecli close "$FILE"
officecli validate "$FILE"
Verified:
returns
,
resolves to
. This is the shape of every build: open → set cells/formulas → format → close → validate.
CSV / bulk import
Native command (preferred for CSV/TSV). Fastest path; loads a CSV into a sheet in one call.
sets AutoFilter + freeze pane on row 1. Widths and
still need a follow-up pass (per D-12 in Dashboard skill).
bash
officecli import "$FILE" /Sheet1 --file data.csv --header
officecli import "$FILE" /Sheet1 --file data.tsv --format tsv --header
officecli import "$FILE" /Sheet1 --stdin --start-cell B2 < data.csv
Python + batch fallback — use when you need custom type coercion, formula injection, or the CSV lives inside another data pipeline. Recipe for 600-6000+ cells:
python
# gen_batch.py — produces batch chunks of 80 value-set ops each
import csv, json
ops = []
with open("data.csv") as f:
reader = csv.reader(f)
for r, row in enumerate(reader, start=1):
for c, val in enumerate(row):
col = chr(ord('A') + c)
ops.append({"command":"set","path":f"/Data/{col}{r}",
"props":{"value": val}})
for i in range(0, len(ops), 80):
print(json.dumps(ops[i:i+80]))
bash
python gen_batch.py | while IFS= read -r chunk; do
printf '%s\n' "$chunk" | officecli batch "$FILE"
done
Outcome: 648-row retail CSV (6490 cells) loads in ~30s, zero failures. Tune: start at 80 ops/chunk, drop to 40 if any chunk fails. Numeric type inference and formulas come later via targeted
— batch in this recipe is pure value injection.
Reading & Analysis
Start wide, then narrow.
first tells you what sheets exist and where the data is; jump into
/
/
only once you know where to look.
Open the rendered workbook to eyeball your own work.
officecli view $FILE html
— Read the returned HTML to audit the rendered output. Each sheet is addressable, charts render inline. Catches , placeholder leakage, pivot layout, row-height clipping.
- keeps a live preview running for the human user — they open it at their own discretion. Use when the user wants to watch along; agent self-check uses above.
Use as your first visual check after a batch of edits — fix at source. For final visual verification, the user opens the in their Excel / WPS / Numbers viewer.
Orient. Sheets, dimensions, formula counts.
bash
officecli view "$FILE" outline
Extract. Plain text dump for content QA or LLM context; scope with
/
/
for big files.
bash
officecli view "$FILE" text --start 1 --end 50 --cols A,B,C
Other
modes worth knowing:
(cell values + types/formulas + warnings),
(numeric summaries),
(broken formulas, empty sheets, missing refs).
Round-trip dump. officecli dump "$FILE" [path]
serializes the workbook — or one worksheet (
,
) — into a replayable batch JSON;
officecli batch new.xlsx --input dump.json
replays it. Use it to learn from an existing workbook's structure or clone/adapt a template instead of reading raw OOXML. Coverage per
; subtree dumps don't carry workbook-level resources (settings, named ranges) — the replay target must already define them.
bash
officecli dump "$FILE" -o blueprint.json # whole workbook
officecli dump "$FILE" /Sheet1 -o sheet.json # one worksheet
officecli batch new.xlsx --input blueprint.json
Inspect one element. Use XPath-style paths. Always quote — shells glob
.
bash
officecli get "$FILE" "/Sheet1/A1" # one cell
officecli get "$FILE" "/Sheet1/A1:D10" # range
officecli get "$FILE" "/Sheet1/chart[1]" # chart
officecli get "$FILE" "/Sheet1/table[1]" # ListObject
officecli get "$FILE" "/namedrange[1]" # workbook-level named range
Add
to expand children; add
for machine output. Full element list:
.
Query across the workbook. CSS-like selectors. Use for systematic checks (formula coverage, error cells, empty headers) rather than hand-walking.
bash
officecli query "$FILE" 'cell:has(formula)' # every formula cell
officecli query "$FILE" 'cell:contains("#REF!")' # broken references
officecli query "$FILE" 'cell[type=Number]' # typed filter
officecli query "$FILE" 'Sheet1!B[value!=0]' # sheet-scoped
Operators:
,
,
(contains),
,
,
(exists).
Merge cells shortcut. officecli query $FILE merge
or
— both are aliases for
. Returns every merged range in the workbook without hand-walking
entries.
When the data is big enough that a row-walk is useless, reach for Excel's own analytical elements:
- Build a pivot table with () to group/aggregate without writing 20 SUMIFs. Attach a slicer () to give the reader a filter UI.
- Drop a sparkline () in a row to show per-row trends — cheaper than one line chart per row and they print inline. is a strict enum: (plus aliases / → ). Invalid values hard-fail — no silent fallback to anymore.
- Run
officecli help xlsx pivottable
, officecli help xlsx slicer
, officecli help xlsx sparkline
for the exact prop names.
Creating & Editing
Ninety percent of a build is cells, formulas, formatting, and one or two charts. The verbs:
(new element),
(change a prop),
,
,
,
.
Cells and formulas
Set a value and its format in one call. Never write
at the start of a formula — the CLI strips it.
bash
officecli set "$FILE" /Sheet1/B5 --prop formula="SUM(B2:B4)" --prop numFmt='$#,##0'
officecli set "$FILE" /Sheet1/C5 --prop formula="B5/A5" --prop numFmt="0.0%"
Structural properties (width, height, freeze, tabColor) live on row / col / sheet nodes:
bash
officecli set "$FILE" "/Sheet1/col[A]" --prop width=20
officecli set "$FILE" "/Sheet1/row[1]" --prop height=22
officecli set "$FILE" "/Sheet1" --prop freeze=A2 --prop tabColor=1F4E79
Named ranges
Prefer named ranges over
in formulas. They self-document (
beats
) and they let you move the assumption cell without breaking formulas. Because
values contain both
and
, add them through a batch heredoc:
bash
cat <<'EOF' | officecli batch "$FILE"
[
{"command":"add","parent":"/","type":"namedrange","props":{"name":"GrowthRate","ref":"Sheet1!$B$6"}}
]
EOF
See
officecli help xlsx namedrange
for the full schema.
Batch JSON does NOT accept shell aliases. Inside batch
, always use the full dotted name —
,
, never
(ambiguous: text vs fill). On a bare cell, even the shell form is rejected:
errors with
ambiguous in cell context — use 'font.color' (text) or 'fill' (bg)
. Rule: in any batch JSON or cell prop, write
/
explicitly.
should be
for workbook-level elements and
for sheet-scoped; empty string is not equivalent.
Charts
Chart types live under
officecli help xlsx chart
— the enum is long (20+). Pick the right one for the message: column for category comparison, line for time series, pie only when slices are self-evidently proportional, scatter for correlation. Avoid exotic types unless they answer a specific question.
Three ways to feed chart data. Pick one per chart — mixing them at add-time is a common trap.
| Form | Shape | When to use |
|---|
| (a) inline | --prop data="Sales:100,200,300" --prop categories="Jan,Feb,Mar"
| Tiny demo charts, numbers you will not edit. Source of truth lives in the chart XML, not a cell. |
| (b) 2D | --prop dataRange="Sheet1!A1:B4"
(first col = categories, first row = header / series name) | Normal case. Must be 2-D — single column fails with "Chart requires data". |
| (c) dotted per-series | --prop series1.name=Sales --prop series1.values="Sheet1!B2:B4" --prop series1.categories="Sheet1!A2:A4"
| Multi-series charts where each series points at non-contiguous ranges, or you want explicit series naming. alone (no ) emits a chart with as the x-axis. |
The single-column trap. dataRange="Sheet1!B2:B13"
looks like "value column" but the engine rejects it with
. Either widen the range to include the category column (
), or switch to form (c) with explicit
.
Move / resize a chart after create: set chart[N] --prop anchor="F5:N25"
(also
--prop x= --prop y= --prop width= --prop height=
).
Series are still immutable — to add/change a series,
the chart and
with the full series list. Note
shifts
and re-add
appends at the end — to preserve chart order, remove all and rebuild in order.
Anchor sizing. No auto-fit. A column chart with 5-6 categories + 2 series needs roughly
(12 cols × 18 rows) to show all labels uncut. Narrower and X-axis labels clip; wider and the chart can split across pages on print/export. If in doubt, start narrow, preview via
(Read the returned HTML path), widen in increments. Page layout (below) is the other half of the fix.
Chart — always prefix with the sheet. Even when the chart lives on the same sheet, write
dataRange="Summary!A17:C22"
, not
. The sheet-less form works inconsistently; the prefixed form is 100% reliable.
officecli adds extended chart types the classic Excel object model lacks:
,
,
,
,
,
,
. Use them when the data calls for them.
NEVER put unreplaced template tokens in chart title / series name / legend / axis title. ,
,
,
,
render
literally in the legend — validate passes, but a CFO sees
where "FY2024" should be. Always bind to final text or a cell reference (
or
).
Conditional formatting
Three common flavors, each with its own prop shape (consult
):
- Color scales: cells shaded on a gradient by value — with / / .
- Data bars: in-cell bars showing magnitude — . Set explicit / for consistent scaling across a column; defaults are valid if you omit them.
- Formula rules (the element): highlight row when a condition is true — with and a fill/font.
Rule: apply CF sparingly. A workbook where every cell is colored tells the reader nothing.
Data validation
Input cells in trackers and templates MUST carry data validation. It's cheap and it stops entire classes of downstream bugs. Three list-source patterns — pick based on where the allowed values live.
(a) Inline list — allowed values are short and fixed in the rule itself.
bash
officecli add "$FILE" /Sheet1 --type validation \
--prop sqref="C2:C100" --prop type=list \
--prop formula1="Yes,No,Maybe" \
--prop showError=true --prop errorTitle="Invalid" --prop error="Select from list"
(b) Named range (preferred for cross-sheet lookups) — allowed values live in another sheet and may grow. Define the named range first, then reference it. Use a batch heredoc because
contains
and
:
bash
cat <<'EOF' | officecli batch "$FILE"
[
{"command":"add","parent":"/","type":"namedrange","props":{"name":"StatusList","ref":"Lookups!$A$2:$A$4"}},
{"command":"add","parent":"/Sheet1","type":"validation","props":{"sqref":"B2:B100","type":"list","formula1":"=StatusList"}}
]
EOF
(c) Direct cross-sheet range — no named range, raw
inside
. Also needs a batch heredoc to keep
and
intact:
bash
cat <<'EOF' | officecli batch "$FILE"
[
{"command":"add","parent":"/Sheet1","type":"validation","props":{"sqref":"C2:C100","type":"list","formula1":"Lookups!$A$2:$A$4"}}
]
EOF
If you write the cross-sheet variant as
on the shell, the
gets shell-mangled into
and the dropdown will silently fall back to no list. Verify with
officecli get "$FILE" /Sheet1/validation[N]
—
must show a plain
, no backslash.
Other common
values:
,
,
,
,
. See
officecli help xlsx validation
for operators and the full prop list.
Other elements (one-liners)
- Tables (ListObjects) — with a range; gives auto-filter + structured refs.
officecli help xlsx table
.
- Comments — ; use for documenting hardcoded assumptions.
officecli help xlsx comment
.
- Sheet reordering — , not . only works on row/cell paths.
Chart Axis-by-Role
Editing a chart axis in place is cheaper than rebuilding the chart. Address axes by
role (
= Y,
= X), not by index — the XML order isn't stable.
bash
officecli get "$FILE" "/Sheet1/chart[1]/axis[@role=value]"
officecli set "$FILE" "/Sheet1/chart[1]/axis[@role=value]" --prop min=0 --prop max=100000
officecli set "$FILE" "/Sheet1/chart[1]/axis[@role=category]" --prop title="Month"
QA (Required)
Assume there are problems. Your job is to find them.
Your first workbook is almost never correct. Treat QA as a bug hunt, not a confirmation step. If you found zero issues on first inspection, you were not looking hard enough. The formulas look fine until you check two of them against source cells.
Minimum cycle before "done"
officecli view "$FILE" issues
— empty sheets, broken formulas, missing refs.
officecli view "$FILE" annotated
(sample ranges) — values + types + warnings.
- For every Excel error type, query it:
bash
officecli query "$FILE" 'cell:contains("#REF!")'
officecli query "$FILE" 'cell:contains("#DIV/0!")'
officecli query "$FILE" 'cell:contains("#VALUE!")'
officecli query "$FILE" 'cell:contains("#NAME?")'
officecli query "$FILE" 'cell:contains("#N/A")'
officecli validate "$FILE"
— safe with a resident open; flushes pending edits to disk itself.
- Visual pass — walk every sheet via the HTML preview. Run
officecli view "$FILE" html
and Read the returned HTML path. Each sheet renders with charts inline. Scan for , truncated titles, placeholder tokens (, , ), sliced charts, white-slice pie charts, empty chart anchors — STOP and fix before declaring done. "validate pass" is not delivery; "the preview looks like a real workbook" is delivery. For human preview, run (user opens the live preview at their own discretion) or have them open the directly in Excel / WPS / Numbers.
- Print layout fix (wide tables / multi-chart sheets). When a sheet holds a chart or a wide table and the user will print it, set per-sheet page layout — but match the fit mode to the sheet's height:
bash
# Short summary / chart sheet → fit to one page.
officecli set "$FILE" "/Summary" --prop orientation=landscape --prop fitToPage=true
# Tall data table → fit width only (fitToPage=true would crush all rows onto one unreadable page).
officecli set "$FILE" "/Data" --prop orientation=landscape --prop fitToPage=1x0
Outcome: charts/wide tables print without mid-chart splits; tall tables stay readable across natural page breaks. Apply to every sheet that holds a chart or a > 8-column table.
- If anything failed, fix, then rerun the full cycle. One fix commonly creates another problem.
+
are the structural QA pair:
catches broken formulas and empty sheets;
(Read the returned HTML path) catches
, truncation, and token leakage. Chart fill colors / theme tints can vary across viewers — spot-check in the user's target viewer when color fidelity matters.
Formula verification checklist
Template QA
When editing a template, check for leftover placeholders — they look like content and slip past
:
bash
officecli query "$FILE" 'cell:contains("{{")'
officecli query "$FILE" 'cell:contains("xxxx")'
officecli query "$FILE" 'cell:contains("TBD")'
Fresh eyes
When you finish a workbook, open it fresh. Read
/ HTML preview top-to-bottom as if you are a new reviewer — look for formulas, numbers that look off, formatting inconsistency, missing data.
Honest limit
catches schema errors, not design errors. A workbook can pass
with every number wrong. The checklist above — especially spot-checking formulas against source cells — is how you catch what validation can't.
Known Issues & Pitfalls
The cross-sheet trap (short)
Shells (bash history expansion, zsh splitting) and CLI arg parsing mangle
in
into
. A formula containing
is silently broken — it renders as literal text and references nothing.
Fix. Use a batch heredoc with single-quoted delimiter (
), which disables all shell expansion:
bash
cat <<'EOF' | officecli batch "$FILE"
[{"command":"set","path":"/Summary/B2","props":{"formula":"Revenue!B13"}}]
EOF
Verify. After writing,
the cell;
must show a plain
with no backslash.
CLI bug backlog (short)
CLI constraints and gaps to work around — not defects in the output file.
- Chart series are immutable after create — to add/change a series: + with the full series list. (Position is mutable:
set chart[N] --prop anchor=
/ .) shifts subsequent indices down; re-add appends at end.
- Cross-sheet formula batches run fine through a resident — a prior "deadlocks even at 3-5 ops" caution no longer reproduces. Pure value-set batches stay reliable at 50-80+ ops too. If you ever hit a hang, fall back to a non-resident one-big-batch or individual . Multiple resident processes on the same file/machine can still contend — expect non-deterministic hangs if another agent/session holds a resident on the same file.
- Conditional formatting naming asymmetry — the element name for is ; the path suffix is . Use
officecli help xlsx conditionalformatting
for schema, for paths.
- Sheet prop on add — help says Add processes , but the prop is often ignored. Reorder with / / after creating the sheet.
- cascade guard — rejects sheet remove/rename when the sheet is referenced by validation / conditional format / sparkline / hyperlink / named range on another sheet. Remove those dependent elements first, then remove the sheet.
- Batch JSON rejects cell alias — inside batch , errors
ambiguous in cell context — use 'font.color' (text) or 'fill' (bg)
. The CLI at shell level accepts / as aliases on non-cell elements, but inside batch JSON on a cell always write the full dotted name: , , .
Renderer caveats (cross-viewer color fidelity)
is the right tool for structural QA (overflow, truncation, placeholder leakage, layout) — Read the returned HTML path. Some chart rendering details vary across the viewer the end user opens the file in. Observed divergences:
- Pie / doughnut fill colors may collapse to a single theme tint in some viewers (slices look "all white" or "all one color"). The file may be fine in the user's target viewer.
- Line chart / column chart series colors may drift from the workbook theme in some viewers.
- Form-control checkboxes may render as double-boxed in some viewers.
Before calling a color or chart "broken", open the file in the user's actual target viewer. If it looks correct there, the problem is viewer rendering, not data — do not chase it. The CLI's structural checks (
, truncation, placeholder text, layout) remain authoritative.
Escape layers (shell quoting is above; these are the extras)
is the shell layer (single-quote it, above).
/
in a prop value ARE interpreted by the CLI into a real newline / tab. Two more layers:
- JSON level (batch). Standard JSON escapes — , , . A real backslash in the final string is .
- Excel level. in a cell is a real line break — pair with so Excel shows the wrap. Works in a shell-quoted prop directly (); inside batch JSON gives the same. When in doubt, the cell and compare character-for-character.
Other common pitfalls
| Pitfall | Fix |
|---|
| All attrs go through : |
| Guessing a prop name | officecli help xlsx <element>
— don't improvise |
| on a cell | Ambiguous — use (text) or (bg). Also applies inside batch JSON: always use full dotted names, never shell aliases |
| hex colors | Drop the : |
| vs | is 0-based (array); paths are 1-based (XPath) |
| Unquoted in zsh/bash | Quote every path: |
| Sheet name with spaces | Quote full path: |
| Year showing as | or |
| Modifying a file open in Excel | Close it in Excel first |
| not reordering sheets | is for rows/cells. Use / / for sheets |
| Cached values missing after write | New formulas get cached values when a human opens the file; accepts them either way |