beanquery
beanquery copied to clipboard
Totals summary?
Hi! Is there a way to display column totals at the end of the report? I.e., if I run
balances where account ~ 'leave' and date <= 2025-05-01
and get
account SUM((po
------------------------------ -------
Assets:Vacation:Annual-Leave xy BD
Assets:Vacation:Approved-Leave ab BD
are there any options to show, in the same report, the total for the sum() column?
I can get the total by running
select sum(position) where account ~ 'leave' and date <= 2025-05-01
but I think this would be a good feature to have, if it does not already exist.