Add your files
Drop one CSV or two hundred. Batch conversion is not a paid feature here.
An export from a database, a bank or an analytics tool is a CSV that has to become a workbook someone can actually work in.
Rows and fields become worksheet cells with detected types, so numbers sum and dates sort. The result is a proper XLSX with a header row rather than a text file Excel keeps re-interpreting on open.
Type detection is a guess, and it guesses wrong in the same three places every time: long numeric IDs become scientific notation, values with leading zeros lose them, and ambiguous dates flip between day-first and month-first depending on locale.
Common in European exports where the comma is the decimal separator. The delimiter is detected from the file rather than assumed.
The CSV was not UTF-8, or it lacked a byte order mark and Excel assumed the local code page. Re-save as UTF-8 with BOM.
XLSX holds 1,048,576 rows. A larger CSV has to be split or loaded into a database instead.
Drop one CSV or two hundred. Batch conversion is not a paid feature here.
Excel Workbook is lossless, so nothing is thrown away in the conversion.
Converted and deleted the moment it finishes. Never written to permanent storage.