Re: Getting started; assigning accounts to bank .csv data

2016-02-04 Thread Simon Michael
On 2/1/16 10:13 AM, John Hendy wrote: > I tried to search the list for more of this sort of question, so > forgive me if I've missed something. Replying with links pointing me > in the right direction would be plenty sufficient if this has already > been discussed! Welcome John, There are quite

Re: Getting started; assigning accounts to bank .csv data

2016-02-04 Thread Simon Michael
Hi Stefano, I agree. Many things should be more straightforward and better documented. I think we could pick out a few common tasks to focus our tool-building/documenting efforts on. Eg: 1. importing bank data and CSV generally. All of the tools and basic generic workflows for this should be

Re: Getting started; assigning accounts to bank .csv data

2016-02-04 Thread Stefano Zacchiroli
On Mon, Feb 01, 2016 at 11:41:03PM -0500, Martin Blais wrote: > Check out LedgerHub for ideas. [...] > The project is being killed right now, rewritten much better and simpler > and migrated into the Beancount project; if you do end up looking at the [...] > In any case, you can't really get away

Re: Getting started; assigning accounts to bank .csv data

2016-02-03 Thread Erik Hetzner
On Tue, 02 Feb 2016 19:48:06 -0800, John Hendy wrote: > > > > On Monday, February 1, 2016 at 10:41:26 PM UTC-6, Martin Blais wrote: > > > > - Merging new transactions with previous transactions imported from the > > other side (e.g. a payment from a bank account to pay off

Re: Getting started; assigning accounts to bank .csv data

2016-02-03 Thread Martin Blais
On Wed, Feb 3, 2016 at 11:30 PM, Michael Norrish wrote: > One way to do two-stage cheques would be something like > > 2016/1/25 * My Favourite Shop > Expenses:Groceries $100 > Liabilities:Unprocessed Checks > > 2016/1/31 * Check clearing >

Re: Getting started; assigning accounts to bank .csv data

2016-02-03 Thread Martin Blais
This is related to this: https://bitbucket.org/blais/beancount/src/tip/src/python/beancount/plugins/tag_pending.py?at=default=file-view-default See this thread for context: https://groups.google.com/d/msg/beancount/z9sPboW4U3c/EQk25vKcHDQJ On Thu, Feb 4, 2016 at 1:42 AM, Martin Blais

Re: Getting started; assigning accounts to bank .csv data

2016-02-03 Thread Michael Norrish
One way to do two-stage cheques would be something like 2016/1/25 * My Favourite Shop Expenses:Groceries $100 Liabilities:Unprocessed Checks 2016/1/31 * Check clearing Liabilities:Unprocessed Checks $100 Assets:Checking Account You could assuredly add metadata to link the two

Re: Getting started; assigning accounts to bank .csv data

2016-02-03 Thread David Glasser
One downside to doing it this way is that before you enter the check clearing transaction, Assets:Checking does not actually answer the question "how much can I take out of my checking account without bouncing a check", which surely is a very important use case. --dave On Feb 3, 2016 8:30 PM,

Re: Getting started; assigning accounts to bank .csv data

2016-02-03 Thread Michael Norrish
A balance command mentioning those two accounts would sum to the amount you want: ledger bal assets.checking liabilities:unprocessed Michael > On 4 Feb 2016, at 15:50, David Glasser wrote: > > One downside to doing it this way is that before you enter the check >

Re: Getting started; assigning accounts to bank .csv data

2016-02-03 Thread John Hendy
On Tue, Feb 2, 2016 at 10:07 PM, Martin Blais wrote: > On Tue, Feb 2, 2016 at 10:48 PM, John Hendy wrote: >> >> On Monday, February 1, 2016 at 10:41:26 PM UTC-6, Martin Blais wrote: >>> >>> On Mon, Feb 1, 2016 at 1:13 PM, John Hendy wrote:

Re: Getting started; assigning accounts to bank .csv data

2016-02-03 Thread David Glasser
Ah, sure, if there's a 1:1 mapping between unprocessed accounts and main accounts. (Perhaps Assets:Checking:Unprocessed Checks?) On Wed, Feb 3, 2016 at 9:32 PM, Michael Norrish wrote: > A balance command mentioning those two accounts would sum to the amount you >

Re: Getting started; assigning accounts to bank .csv data

2016-02-03 Thread Martin Blais
On Wed, Feb 3, 2016 at 11:48 AM, Erik Hetzner wrote: > On Tue, 02 Feb 2016 19:48:06 -0800, > John Hendy wrote: > > > > > > > > On Monday, February 1, 2016 at 10:41:26 PM UTC-6, Martin Blais wrote: > > > > > > - Merging new transactions with previous

Re: Getting started; assigning accounts to bank .csv data

2016-02-02 Thread Martin Blais
BTW, here's an auto-generated example file that looks similar to how I organize mine using org-mode: https://bitbucket.org/blais/beancount/src/tip/examples/example.beancount On Tue, Feb 2, 2016 at 11:07 PM, Martin Blais wrote: > On Tue, Feb 2, 2016 at 10:48 PM, John Hendy

Re: Getting started; assigning accounts to bank .csv data

2016-02-02 Thread John Hendy
On Monday, February 1, 2016 at 10:41:26 PM UTC-6, Martin Blais wrote: > > On Mon, Feb 1, 2016 at 1:13 PM, John Hendy > wrote: > >> Greetings, >> >> >> It's a fresh year and I've been seeing ledger come up on the Org-mode >> mailing list for some time and decided to give it

Re: Getting started; assigning accounts to bank .csv data

2016-02-02 Thread Martin Blais
On Tue, Feb 2, 2016 at 10:48 PM, John Hendy wrote: > > On Monday, February 1, 2016 at 10:41:26 PM UTC-6, Martin Blais wrote: > >> On Mon, Feb 1, 2016 at 1:13 PM, John Hendy wrote: >> >>> Greetings, >>> >>> >>> It's a fresh year and I've been seeing ledger

Getting started; assigning accounts to bank .csv data

2016-02-01 Thread John Hendy
Greetings, It's a fresh year and I've been seeing ledger come up on the Org-mode mailing list for some time and decided to give it a try. I'm coming from Moneydance and just wanted to get away from the tedious GUI method of adding information, as well as have flexibility to generate my own

Re: Getting started; assigning accounts to bank .csv data

2016-02-01 Thread Craig Earls
I have a custom elisp mode that sucks in csv from my bank and sticks it in my ledger. The emacs ledger mode has enough built in autocompletion that hand rntering a few xavts here and there isnt onerous. Its all about the editor. On Monday, February 1, 2016, John Hendy wrote:

Re: Getting started; assigning accounts to bank .csv data

2016-02-01 Thread Martin Blais
On Mon, Feb 1, 2016 at 1:13 PM, John Hendy wrote: > Greetings, > > > It's a fresh year and I've been seeing ledger come up on the Org-mode > mailing list for some time and decided to give it a try. I'm coming > from Moneydance and just wanted to get away from the tedious GUI