Bank statement PDF to a plain CSV.

A plain comma-separated file, with one row per transaction and nothing proprietary about it — the format every spreadsheet and accounting tool will accept.

Useful when the destination is not Excel: an import template, a script, or a system that only takes CSV.

What is in the file

Date, description, amount and — where the statement prints one — the running balance, so the reconciliation you were shown is reproducible from the file itself.

Verified before download

Every conversion is reconciled before you see it: the running balance is checked row by row, or — when the statement never prints one — the opening balance plus every transaction is checked against the closing balance. If the statement gives us nothing to check against, we say so instead of showing a green tick.

Generated in your browser

The CSV is written locally from the result already returned, so the finished file never exists on a server.

Questions

Does it include the running balance?

Yes, when the statement prints one. When it does not, the reconciliation falls back to checking the totals.

Can I convert several statements into one CSV?

Yes — a batch can be exported as a single CSV with a column naming the source statement.

Related