LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

hledger-incomestatement

displays an income statement showing revenues and expenses for the report

TLDR

Show income statement
$ hledger incomestatement
copy
Show from specific file
$ hledger incomestatement -f [journal.ledger]
copy
Show for specific period
$ hledger incomestatement -p "[this month]"
copy
Show monthly breakdown
$ hledger incomestatement --monthly
copy
Limit account depth
$ hledger incomestatement --depth [2]
copy

SYNOPSIS

hledger incomestatement | is [options]

DESCRIPTION

hledger incomestatement (alias is) displays an income statement (profit & loss report) showing revenues and expenses for the report period, and their difference as net income. Part of hledger's standard financial reports alongside balance sheet and cash flow.

PARAMETERS

-f, --file file

Use specified journal file.
-p, --period expr
Report period (e.g., "this month", "2024").
--monthly
Show monthly columns.
--quarterly
Show quarterly columns.
--yearly
Show yearly columns.
--depth n
Limit account depth.
--tree
Show accounts as tree.
--flat
Show accounts as flat list (default).
--average
Show a row average column.
--row-total
Show a row total column.
--no-total
Omit the final total row.
--sort-amount
Sort by amount instead of account name.
--output-format fmt
Output format (txt, html, csv, tsv, json).

SEE ALSO

Copied to clipboard
Kai