Tested tool guide
Tested browser tools
Checked August 16, 2026
What CSV Deduplicator does, with a checked example
CSV Deduplicator identifies repeated records by comparing the columns you choose, then returns CSV data containing one row for each distinct selected-value combination. Selecting email checks uniqueness by email, while selecting email and account_id checks each pair. The common surprise is that rows can count as duplicates even when their unselected fields differ. Include every column needed to distinguish records, especially when other fields contain names, dates, statuses, balances, or notes that must not be discarded.
Worked example
A concrete input and expected output from the current implementation.
Input
CSV data:
id,name
1,Ada
1,Ada
2,Lin
Selected columns: id, name
->
Expected output
id,name
1,Ada
2,Lin
The two rows containing 1,Ada have identical values in both selected columns, so they form one duplicate group. The 2,Lin row has a different key and remains.