Free · No signup · Browser-based

Chain your CSV operations into a workflow.

Drop a CSV once. Validate, dedupe, filter, sort, query with SQL, split, export — all in one tab. Re-runs instantly when you tweak a step.

01 · How it works

Steps stack into pipelines.

Each step takes the previous step's output as its input. The whole pipeline re-runs when you add, remove, reorder, or change any step. No batch button; nothing to click to 'apply.'

i. drop

Drop a CSV

Drag in a .csv or .xlsx, or paste data directly. We accept up to about 50 MB.

ii. build

Add steps

Click '+ Add step' and pick: Validate, Remove duplicates, Filter, Sort, Query SQL, or Split. Reorder with ↑↓, disable with ◉, remove with ×.

iii. ship

Export or dashboard

Export the final result in any format, or send it straight to the dashboard for a full visualization.

02 · Why pipelines

One tab beats twelve.

ConvertCSV-style sites make you open a separate page for each operation. We chain them. Drop your CSV once, build the workflow, ship the result.

  • 01

    Validate + dedupe + filter

    Catch missing values, then drop duplicates, then keep just the rows you care about — in one pipeline.

  • 02

    SQL on a sales export

    SELECT name, revenue FROM csv WHERE region = 'North' ORDER BY revenue DESC LIMIT 20 — without leaving the browser.

  • 03

    Clean → split → ZIP

    Sort by date, then split every 1000 rows, then download all chunks as a single .zip.

  • 04

    End on a dashboard

    After cleaning and querying, hit 'Build dashboard from final result' to see the data visualized.

"Replaced five separate browser tabs with one pipeline. The dashboard at the end was the unexpected bonus."
— anyone with a messy CSV
03 · FAQ

Pipeline questions.

What is a CSV pipeline?
A sequence of operations applied to a CSV — validate → remove duplicates → filter → sort → export. Each step takes the previous step's output as input. The whole pipeline re-runs whenever you change anything.
Validate, Remove duplicates, Filter rows (up to 3 conditions joined by AND), Sort rows, Query with SQL, and Split CSV. After the pipeline, export as CSV / JSON / SQL / Markdown / HTML / XML / Excel — or send to the dashboard.
Yes — each step has ↑/↓ buttons. The pipeline re-runs whenever the order, config, or enabled state changes.
Yes — click the ◉ icon to toggle a step off (it'll be skipped on the next run). Toggle it back on to include it.
No. Every step runs locally — verify in DevTools → Network.
The pipeline stops at the failing step and shows the error message. Disable the step or fix its config, and it resumes.
Split is a 'terminal' step — when reached, it produces the file chunks and ends the pipeline. Steps after a split are ignored.