Salesforce's Data Import Wizard has quirks around file size, column mapping, and picklist values. Here's a field-tested workflow for splitting large CSVs into import-ready chunks without triggering errors.
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.
Excel files over 50,000 rows get sluggish, and over 1M rows Excel refuses to open them. Here are three strategies for splitting without losing formatting, formulas, or data types.
When monthly exports add columns partway through the year, naive concat breaks. Proper merging unions headers and preserves every field, with sensible defaults for missing data.
Most converters turn nested objects into "[object Object]" and silently drop sparse keys. Here's what a correct CSV ↔ JSON round-trip looks like and how to preserve structure.
Ten real-world regex patterns for CSV cleanup: phone number normalization, date format conversion, country-name canonicalization, and more. Copy-paste ready.
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.
The 12 structural issues that cause 90% of import failures — and how to catch them in seconds. From blank headers to row-length mismatches to encoding problems.
If a tool uploads your file, a breach becomes a data-handling incident for your company. Browser-based tools sidestep this entirely — here's why the architecture matters for compliance.