Download CSV Sample Files

File File type File size Rows/Records Mime type Download example file
CSV Document Example File Download CSV Document 162 B Microsoft Excel text/csv Download example file
CSV Document (100 rows) Example File Download CSV Document 3 KB Microsoft Excel text/csv Download example file
CSV Document (1000 rows) Example File Download CSV Document 34 KB Microsoft Excel text/csv Download example file
CSV Sample - 5 Rows CSV 387 B 5 text/csv Download example file
CSV Sample - 100 Rows CSV 7 KB 100 text/csv Download example file
CSV Sample - 1,000 Rows CSV 69 KB 1,000 text/csv Download example file
CSV Sample - 10,000 Rows CSV 689 KB 10,000 text/csv Download example file
CSV Sample - Headers Only CSV 32 B 0 text/csv Download example file
CSV Sample - Special Characters CSV 7 KB 20 text/csv Download example file
CSV Sample - Semicolon Delimited CSV 3 KB 50 text/csv Download example file
CSV Sample - Product Catalogue CSV 6 KB 100 text/csv Download example file
CSV Sample - Financial Transactions CSV 5 KB 100 text/csv Download example file

Example CSV document files

A CSV is a plain-text file that stores data in a table-like format. Think of it as a simple version of an Excel document, but just contains plain text, so no formatting, formulas, images or graphs.

CSV stands for "Comma Separated Values". The file is normally made up of rows of data, with each column separated by a comma. Each column is encased in quotes, which allows the column value to include a comma. There are lots of other very similar types of file, such as a TSV ("tab separated values") which uses a tab instead of a comma, and other CSVs that may use a semi-colon or other less-common character.

CSVs are popular because they are very small in file size (they only really contain the actual data, give or take a few bytes for the comma and new line characters) and they are very easy for developers to work with, making them an ideal formal for exporting data from one system to import into another.

You can use Microsoft Excel to open our sample CSV files, but there are lots of other options too. Check out the How to Geek article for more info on working with CSV files.