First, do not split blindly
Splitting a CSV into worksheet-sized chunks makes global sorts, duplicate checks and aggregations easy to get wrong. Keep an untouched original. If Excel is the final destination, filter or aggregate the full file first and export a smaller result.
Your local options
- csvlite: visual, read-only filtering, profiling and pivots without syntax.
- DuckDB: powerful SQL against the CSV directly.
- Power Query/Data Model: stays in the Microsoft ecosystem, but does not place every row in the worksheet grid.
Microsoft explicitly recommends checking source and destination counts and documents alternatives when data exceeds the grid. See Microsoft’s guidance.
Export the question, not the whole file
In csvlite, stack filters, choose the visible columns, and export the current view. Or group by categories and calculate counts, sums, averages, minima, maxima or distinct values. The exported CSV becomes a manageable spreadsheet while the original remains the source of truth.