$devtoolkit.sh/examples/csv/financial

Format a CSV Financial Statement

Financial CSV exports from accounting software, payment processors, and bank APIs are the input for reporting, forecasting, and audit workflows. This example shows a monthly P&L summary with income, expense categories, and net profit. The CSV viewer renders columns clearly so you can verify figures before importing to a spreadsheet. Check for sign conventions and currency formatting before performing calculations.

Example
period,revenue,cost_of_goods,gross_profit,operating_expenses,ebitda,net_income
2024-01,48250.00,18200.00,30050.00,12400.00,17650.00,14200.00
2024-02,52100.00,19800.00,32300.00,13100.00,19200.00,15600.00
2024-03,61400.00,22500.00,38900.00,14200.00,24700.00,20100.00
2024-04,58900.00,21800.00,37100.00,13900.00,23200.00,18800.00
2024-05,67200.00,24100.00,43100.00,15300.00,27800.00,22900.00
[ open in CSV File Viewer → ]

FAQ

What is EBITDA?
EBITDA is Earnings Before Interest, Taxes, Depreciation, and Amortization. It is a common profitability metric that removes financing and accounting decisions to show core operating performance.
Should financial CSV values include currency symbols?
No. Store numeric values without symbols or thousand separators (e.g., 48250.00 not $48,250.00) so that calculations work correctly in spreadsheets and analysis tools.
How do I import financial CSV into accounting software?
Each accounting platform (QuickBooks, Xero, FreshBooks) has its own CSV template. Match your column names to the expected headers and use consistent date formatting before import.

Related Examples

/examples/csv/financialv1.0.0