LinuxCommandLibrary

hledger-balancesheet

Show the end balances in asset and liability accounts.

TLDR

Show the current balances in Asset and Liability accounts, excluding zeros

$ hledger balancesheet
copy


Show just the liquid assets (Cash account type)
$ hledger balancesheet type:C
copy


Include accounts with zero balances, and show the account hierarchy
$ hledger balancesheet --empty --tree
copy


Show the balances at the end of each month
$ hledger balancesheet --monthly
copy


Show the balances' market value in home currency at the end of each month
$ hledger balancesheet --monthly -V
copy


Show quarterly balances, with just the top two levels of account hierarchy
$ hledger balancesheet --quarterly --tree --depth 2
copy


Short form of the above, and generate HTML output in bs.html
$ hledger bs -Qt -2 -o bs.html
copy

Copied to clipboard