Tested tool guide
Tested browser tools
Checked August 16, 2026
What CSV Transpose Tool does, with a checked example
CSV Transpose Tool rotates a rectangular CSV table across its diagonal: each input row becomes an output column, and each input column becomes an output row. It parses CSV fields as cells, applies the row-column swap, detects a likely header row, and makes the result available as a CSV download. The common surprise is that a header across the top moves down the left side in a full transpose. This is a positional transformation, not a pivot operation: it does not group records, aggregate values, or invent labels.
Worked example
A concrete input and expected output from the current implementation.
Input
Name,Score
Ada,7
Ben,5
->
Expected output
Name,Ada,Ben
Score,7,5
The input has three rows and two columns, so the output has two rows and three columns. Reading down each input column produces, in order, one output row.