Convert an ISO 20022 CAMT.053 statement (camt.053.001.02 through .08) into an Excel spreadsheet with amounts as real numbers. Free, no signup, no size limit.
camt.053 version
CAMT.053 is the ISO 20022 BankToCustomerStatement message — the XML
format that replaced SWIFT MT940 across SEPA and most of Europe. Opened directly, Excel either refuses
the file or, via Data → From XML, flattens it into one row per leaf element instead of one row per
transaction, because the data you want is nested three or four levels deep across Ntry,
NtryDtls/TxDtls, RmtInf and Refs.
The sign convention is the other trap: CAMT.053 never stores a negative amount. Every Amt
is positive, and direction lives separately in CdtDbtInd (CRDT or
DBIT). This converter applies the indicator and writes debits as negative numbers
— not text — so a SUM formula on the Amount column works immediately after opening the file.
The .xls download is SpreadsheetML with each cell explicitly typed
(ss:Type="Number" for amounts), so Excel never mis-guesses a column as text the way it
sometimes does with CSV — which matters most for CAMT.053, where dates come from ISO 8601
(BookgDt/ValDt) and need to land as real Excel dates, not strings, for sorting
and pivot tables to work correctly.
BookgDt) and value date (ValDt) as separate columnsCdtDbtInd applied, and currency from the Amt@Ccy attributeBkTxCd, domain or proprietary) and entry statusAcctSvcrRef as bank reference, EndToEndId or InstrId as customer referenceRmtInf/Ustrd), falling back to AddtlNtryInfOPBD) and closing (CLBD) rows kept alongside the entriesNo. Parsing runs in your browser through the built-in XML parser. There is no server and no upload endpoint — check your browser's network tab during a conversion.
All of camt.053.001.02 to camt.053.001.08, since matching is
done on local element names rather than a fixed namespace.
Yes — the .xls download declares each amount cell as ss:Type="Number", so
Excel treats the column as numeric from the moment it opens: SUM, sorting and conditional formatting all
work without you having to reformat the column first.
Yes — use the CSV or semicolon CSV buttons above. They come from the same parsed data as the Excel download, including the applied CdtDbtInd sign.