LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

hledger-aregister

shows transactions and running balance for a single account in bank-statement format

TLDR

Show account register
$ hledger aregister [checking]
copy
Show with a specific journal file
$ hledger aregister -f [journal.ledger] [assets:bank]
copy
Show monthly summary
$ hledger aregister [checking] --monthly
copy
Include historical balance from before report period
$ hledger aregister [checking] -H
copy
Limit output width
$ hledger aregister [checking] -w [80]
copy
Include zero-change transactions
$ hledger aregister [checking] -E
copy
Output as CSV
$ hledger aregister [checking] -O csv
copy

SYNOPSIS

hledger aregister | areg [options] account

DESCRIPTION

hledger aregister (alias areg) shows transactions and running balance for a single account in bank-statement format. Each transaction appears on one line with the date, description, other accounts involved, amount, and running balance. Unlike register, which shows one line per posting, aregister groups postings by transaction. The account can be specified by full name or a case-insensitive regular expression matching the first account alphabetically.

PARAMETERS

-f, --file file

Use specified journal file.
--daily
Show daily summaries.
--weekly
Show weekly summaries.
--monthly
Show monthly summaries.
-H, --historical
Include balance from before report period.
-E, --empty
Show transactions making a net change of zero.
--txn-dates
Filter by transaction date instead of posting date.
--depth n
Limit account depth.
-w, --width n
Set output width.
-O, --output-format fmt
Output format: txt, csv, tsv, html, fods, json.
--quarterly
Show quarterly summaries.
--yearly
Show yearly summaries.

SEE ALSO

Copied to clipboard
Kai