Skip to content

Claude Code Complete Guide

Claude Document Skills: Choosing Excel, PowerPoint, or Word

For / Key Points

For: Professionals who want Claude to create spreadsheets, presentations, or documents but are unsure which format and product surface to use.

Key Points:

  • Choose Excel, PowerPoint, or Word according to who reviews the result and what they must verify
  • The public SKILL.md files are most useful as examples of generation-plus-validation workflows
  • Built-in Skill availability and setup differ across Claude.ai, the Claude API, and Claude Code

Claude can turn one set of source materials into an Excel analysis, a PowerPoint update, and a Word report. Treating those formats as interchangeable containers, however, makes spreadsheet errors and layout defects easy to miss. The central lesson in Anthropic's document Skills is that each file format needs its own validation loop, not merely a different export command.12

This article answers one question: Which format should you choose, and what should a human verify before using the result?

Choose the format by its reviewer

Start with the person who approves the result, not the file extension. Use Excel when someone must recalculate numbers, PowerPoint when a meeting audience must test the narrative, and Word when an approver must inspect the text.

FormatTypical outputWhat Claude can draftWhat a human must verify
Excel (xlsx)Analysis tables, calculations, chart reportsFormulas, structure, formatting, chartsSource data, formulas, units, recalculated values
PowerPoint (pptx)Proposals, briefings, weekly reportsStory, charts, slide layoutArgument, overflow, overlaps, brand language
Word (docx)Proposals, procedures, reportsHeadings, prose, tables, paginationFacts, terminology, page breaks, approval language

Anthropic describes the built-in Skills along the same lines: xlsx creates and analyzes spreadsheets and chart reports, pptx creates and edits presentations, and docx creates and formats documents.1

The decision is not which Skill is “best.” Pick the format whose errors your review process can expose.

Read the public SKILL.md files as validation playbooks

The most reusable parts of Anthropic's public repository are the quality checks, not the polished examples. The repository contains SKILL.md files and supporting resources for xlsx, pptx, docx, and pdf workflows.2

The Excel Skill emphasizes formulas, error checks, and preservation of existing workbook structure.3 The PowerPoint Skill renders slides and checks for overlaps and out-of-bounds elements.4 The Word Skill likewise renders the generated document for page-level visual inspection.5

Three principles transfer to ordinary office work:

  • Confirm that the native application can open the output
  • Validate content and appearance separately
  • Run the same checks again after every correction

A good instruction is not a long collection of adjectives. It is a compact work order defining inputs, output, protected structure, and acceptance criteria.

A reusable instruction template

Reliable requests name the input file and the no-change boundaries first. Use this structure, then swap in checks specific to the selected format.

Shared template
Use the attached [input filename] to create [output format] for [purpose].

Constraints:
- Do not change numbers or proper nouns from the source
- Mark unknown values as "needs review" instead of guessing
- Preserve the heading order and brand language of the supplied template

Acceptance criteria:
- Validate content consistency
- Render the result and inspect the layout
- Report completed checks and unresolved review items

For Excel, add formula-versus-constant rules and a reconciliation against source totals. For PowerPoint, require one message per slide and checks for clipping and overlaps. For Word, include heading hierarchy, split tables, and unintended blank pages.

A request that includes generation and validation is easier to reuse than one that asks for a perfect first draft.

Claude.ai, the API, and Claude Code are different surfaces

This distinction prevents the most common setup mistake. Anthropic's documentation says the built-in document Skills are available in Claude.ai and the Claude API, among other hosted surfaces, but the built-in pptx, xlsx, docx, and pdf Skills are not available in Claude Code.1

SurfaceBuilt-in document SkillsCustom SkillsOperating model
Claude.aiAvailableUpload as a ZIPAttach files and request an artifact in natural language
Claude APIReference by skill_idRegister through the Skills APIBuild a code-execution and file-transfer workflow
Claude CodeNot providedPersonal or project directoriesMaintain your own SKILL.md and scripts

The presence of document Skill source files in a public repository does not mean Claude Code ships the same hosted built-ins. Use the repository to learn workflow design, while using product documentation to confirm availability.

For API use, the code execution tool is required, and file input or output through the Files API requires its corresponding beta header.1 Claude.ai automatically invokes its built-in Skills when creating documents.

So what is the smallest useful pilot?

Pilot one repetitive task first

Do not connect all three formats on the first day. Choose one recurring task whose correct result a human can verify.

A weekly sales-report pilot can follow this sequence:

  1. Create an Excel workbook with a summary and charts from the sales CSV
  2. Reconcile totals and formula errors against the source
  3. Create a five-slide PowerPoint from the approved workbook
  4. Review claims, units, clipping, and overlaps before the meeting

Add Word only when the meeting decisions need to enter an approved minutes template. This sequence stops unverified numbers from propagating into downstream documents.

Do not combine confidential files with unreviewed Skills

A Skill can contain executable code and reference files, not just instructions. Anthropic advises auditing every file from an unknown source and treating a Skill like installed software.1 Do not add an untrusted Skill directly to an environment that handles confidential documents.

Summary: Keep validation evidence, not just the artifact

The next stage of document automation is not faster file generation. It is recording which checks ran and which items a human approved.

For Excel, retain the source row count, reconciled totals, and formula-error count. For PowerPoint and Word, record render inspection, proper-name checks, and approval-sensitive wording. That evidence makes regenerated files easier to compare than storing the artifact alone.

The deepest lesson in the official Skills is not how to make Office files with AI. It is how to define creation and validation as one repeatable procedure.