Hi
I'm on Beancount 2.3.6.
First I do this:
1. Run `bean-query file.beancount`.
2. Get balance sheet: `SELECT root(account, 2), sum(position) FROM
OPEN ON 2022-08-01 CLOSE ON 2024-01-01 CLEAR WHERE not account ~
'Income|Expenses' GROUP BY 1 ORDER BY 1;`
3. Get income statement: `SELECT root(account, 2), sum(position) FROM
OPEN ON 2022-08-01 CLOSE ON 2024-01-01 WHERE account ~ 'Income|Expenses'
GROUP BY 1 ORDER BY 1;`
4. If I sum up everything in the income statement (by copy-pasting
everything (they're only base currency amounts) into a separate calculator,
and adding everything up), the sum is exactly the `Equity:Earnings` shown
in the balance sheet. Great.
5. If I sum up all `Assets` (there are no `Liabilities`) in the balance
sheet (by copy-pasting them into a separate calculator, multiplying non
base currency quantities by corresponding base currency cost (in curly
braces), and adding everything up), the sum is exactly the
`Equity:Earnings` (with sign reversed). Great.
Here is the issue:
- *`Equity:Conversions` is some non-zero amount*. Based on how
everything already adds up (as I showed above), I was expecting
`Equity:Conversions` to be zero.
What could be going on?
Thanks,
DA
--
You received this message because you are subscribed to the Google Groups
"Beancount" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion visit
https://groups.google.com/d/msgid/beancount/4044421a-9757-4c37-955f-a84d3391c4fen%40googlegroups.com.