Step-by-step instructions
- 1
Open CSV in Excel and save as XLSX
In Excel, go to File → Open → browse for the CSV file. Excel opens the Text Import Wizard — set the delimiter (comma, semicolon, tab), column types, and encoding. After importing, go to File → Save As → choose Excel Workbook (.xlsx). This is the simplest approach for a single file.
Go to converter - 2
Drag-and-drop into Excel
Drag the CSV file directly into an open Excel window. Excel opens it as a new workbook. Check that columns are parsed correctly — date columns, number columns, and text columns should be recognised. If dates or numbers appear as text, select the column and use Data → Text to Columns to reparse. Then save as XLSX.
- 3
Convert using Python pandas
For batch conversion or automation: `import pandas as pd; df = pd.read_csv('input.csv'); df.to_excel('output.xlsx', index=False, engine='openpyxl')`. Install requirements: `pip install pandas openpyxl`. This preserves data types correctly and works on any platform. Add `sheet_name='Sheet1'` to name the output sheet.
- 4
Format the XLSX after conversion
After converting, apply formatting: select number columns and format as Number or Currency. Set date columns to Date format. Freeze the header row (View → Freeze Panes → Freeze Top Row). Add an AutoFilter (Data → Filter). Resize columns to fit (select all, then Format → AutoFit Column Width). These steps make the XLSX more usable than the raw CSV import.
Why convert CSV to XLSX?
CSV files are just data — no formatting, no formulas, no charts. Converting to XLSX lets you add all the analytical power of Excel: pivot tables, charts, conditional formatting, formulas, and professional presentation. This is standard practice when receiving data exports for reporting or analysis.
Your files never leave your device
FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.
Frequently asked questions
Why does my CSV open incorrectly in Excel?
How do I convert multiple CSV files to XLSX at once?
Can I add formulas when converting CSV to XLSX?
No account. No upload. Works in any browser.