CSV Tutorials & Guides

Practical articles on working with CSV files — import tricks, encoding gotchas, format conversions, and real-world workflows.

10 articles · updated regularly
CSV TSV XLSX .xlsx
Formats · April 20, 2026 · 5 min read

CSV vs TSV vs XLSX: Which Format Should You Use?

Each format solves a different problem. CSV is the universal lingua franca but ambiguous; TSV is cleaner but less supported; XLSX preserves types but is harder to automate. Pick by use case.

Read article
CRM · April 20, 2026 · 7 min read

Cleaning a CSV Before a CRM Import: Checklist

A 10-step pre-import checklist. Validate headers, normalize phone numbers and emails, remove duplicates, check encoding, remove empty rows, fix leading zeros. Catch everything before it catches you.

Read article
id name revenue ▼ 3 Carlos 2,105 1 Alice 1,240 2 Bob 890 4 Diana 345
Performance · April 20, 2026 · 5 min read

Filtering and Sorting Large CSV Files in the Browser

When your CSV is 500 MB, Excel chokes and Google Sheets refuses. Here's how to filter and sort gigabyte-scale files in a browser without freezing the tab.

Read article