excel-to-delimited

Convert Excel workbooks into per-sheet CSV or TSV files.

Updated Mar 11, 2026
One-click install
npx skills add https://github.com/ekkus93/vscode_skills --skill excel-to-delimited
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: excel-to-delimited
Source: https://github.com/ekkus93/vscode_skills/tree/main/skills/excel-to-delimited
Command: npx skills add https://github.com/ekkus93/vscode_skills --skill excel-to-delimited

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Convert local Microsoft Excel workbooks into per-sheet CSV or TSV files using deterministic local tooling for scalable data review and downstream processing.

Core Features & Use Cases

  • Per-sheet exports: write one file per worksheet to keep outputs small and sliceable.
  • Preserves worksheet order in filenames and content.
  • Deterministic workflow: outputs are written to a sibling directory named after the workbook with a _csv or _tsv suffix, and filenames reflect sheet order.

Quick Start

Run excel-to-delimited on a local workbook to generate per-sheet delimited files beside the workbook.

Frequently Asked Questions about excel-to-delimited

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I convert an Excel workbook with multiple sheets to CSV files?

To convert an Excel workbook with multiple sheets to CSV files, use a tool that processes local .xlsx files and writes one delimited CSV file per worksheet, preserving the original sheet order in the output filenames.

Can I export Excel sheets to TSV format instead of CSV?

Yes, you can export Excel sheets to TSV format. The conversion process supports generating tab-separated values, writing results to a sibling directory named after the workbook with a _tsv suffix.

Do I need Python to convert local Excel files to delimited text files?

Yes, you need Python-based tooling to convert local Excel files to delimited text files. The conversion operates on local workbooks and requires a Python environment to execute the deterministic export workflow.

How are multiple worksheets handled when exporting an Excel file to CSV?

When exporting an Excel file to CSV, multiple worksheets are handled by producing one output file per sheet. The worksheet order is preserved in both the filenames and the content of the generated CSV files.

Where are the CSV files saved when converting an Excel workbook?

When converting an Excel workbook, the CSV files are saved to a sibling directory located beside the original workbook. This output directory is named after the workbook with a _csv suffix.

What is the best way to split a large Excel file into individual CSV files for downstream processing?

The best way to split a large Excel file for downstream processing is using a deterministic local conversion tool that exports each worksheet as a separate, sliceable CSV file, keeping outputs small and organized in a dedicated sibling directory.