- Why do Excel date cells become numbers in CSV?
- Excel stores dates as serial numbers (days since January 0, 1900). When exported without formatting, the underlying number appears. Use 'format cells' in Excel to convert to text before exporting, or use this tool's 'preserve date format' option.
- Does the converter handle merged cells?
- Merged cells in Excel contain data in the top-left cell and empty cells in the rest of the merged area. In CSV conversion, the value appears only in the first cell of the merge; the others appear empty. Un-merge cells before conversion for clean CSV output.
- What is the difference between CSV and TSV?
- CSV (Comma-Separated Values) uses commas as field delimiters; TSV (Tab-Separated Values) uses tab characters. TSV avoids issues with commas in data fields (phone numbers, addresses) but is less universally supported. Choose based on whether your data contains commas.