Skip to content

Quick Start Guide

Build a flow that reads a CSV, keeps only the rows you want, and exports the result. Five steps, about five minutes.

This guide assumes you have a FileBender account. If you don’t, sign up at filebender.com — it’s free to start.

From your dashboard, click Create Flow. You land in the canvas with a single empty flow titled “Untitled Flow”. Rename it now if you like — the title input is focused for you.

The empty canvas after creating a new flow.

Open the transform library (the panel on the left, or press Cmd+B) and drag a CSV Input node onto the canvas. CSV Input is in the Input category — its left border is blue.

A CSV Input node on the canvas, blue left border indicating the Input category.

Drag a CSV file from your computer onto the CSV Input node. FileBender parses it locally — no upload — and shows the schema and a preview underneath. If the parser detects a quoting or delimiter issue, you can adjust it in the node’s config dialog (click the gear icon).

A CSV file dropped onto the CSV Input node, with a parsed preview visible.

Drag a Filter Rows node from the transform library onto the canvas, then drag a connection from the CSV Input’s source handle to the Filter Rows’ target handle. Double-click the Filter Rows node to open its settings and add a condition — for example, status equals active.

Filter Rows configuration dialog with a condition set to status equals active.

Click Save Changes and run the flow. The preview updates to show only matching rows.

Filter Rows node connected to CSV Input, showing filtered results in the preview panel.

Drag a CSV Output node onto the canvas, connect Filter Rows to it, and click Run. When execution finishes, the output node shows a download card — click it to save the filtered CSV.

A CSV Output node showing a download card after a successful run.

That’s it. You’ve built and run a flow.