Data & Spreadsheet Kit
Data & Spreadsheet
CSV Workbench
Profile, clean, deduplicate, convert, and generate Markdown tables from CSV, TSV, or JSON.
Runs locally in your browser. No upload.
Paste input, choose an action, then copy or download the result.
CSV or TSV
Paste or edit the source, then run the tool.
Profile
Review the result, then copy or download it.
Result summary
Review the key fields below. Open developer details for the full raw JSON.
- Delimiter
- ,
- Detected Delimiter
- ,
- Rows
- 4
- Data Rows
- 3
- Columns
- 3
- Headers
- 3 items
Developer details
{
"delimiter": ",",
"detectedDelimiter": ",",
"rows": 4,
"dataRows": 3,
"columns": 3,
"headers": [
"name",
"email",
"amount"
],
"columnProfiles": [
{
"name": "name",
"index": 0,
"filled": 3,
"empty": 0,
"uniqueValues": 2,
"likelyType": "text",
"typeCounts": {
"text": 3
},
"sampleValues": [
"Ada",
"Bima"
]
},
{
"name": "email",
"index": 1,
"filled": 3,
"empty": 0,
"uniqueValues": 2,
"likelyType": "email",
"typeCounts": {
"email": 3
},
"sampleValues": [
"ada@example.com",
"bima@example.com"
]
},
{
"name": "amount",
"index": 2,
"filled": 3,
"empty": 0,
"uniqueValues": 2,
"likelyType": "number",
"typeCounts": {
"number": 3
},
"sampleValues": [
"100",
"250"
]
}
],
"quality": {
"duplicateHeaders": [],
"emptyCells": 0,
"raggedRows": [],
"likelyHeader": true
}
}