Earlier quoted context omitted.
> it seems to me it’s a lot of work to keep everything up to date Unless you do dozens of transactions every day, it's not much of a hassle to keep track of them manually. If you're like a day trader or a small business owner then yeah, you'll probably need some helper tools.
> Unless you do dozens of transactions every day, it's not much of a hassle to keep track of them manually. I don't have too many transactions indeed. I am actually contemplating to switching from my Numbers sheet to the Ledger command line tool. I do like that this tool is multiplatform and based on simple text files. And it shouldn't be too hard to write a few scripts to convert data from my banks and brokers into…
Plain Text Accounting, a guide to Ledger and friends
31–40 of 126 posts
Re: Plain Text Accounting, a guide to Ledger and friends
#32Re: Plain Text Accounting, a guide to Ledger and friends
#33Slightly off topic, but I finally broke down and paid for YNAB this year and it has literally changed my life. It doesn't feel like accounting anymore, it feels like playing monopoly. Use QB for biz, and tried mint for years, both feel like work. YNAB not only tracks historical categories but makes it fun to plan future expenses.
Re: Plain Text Accounting, a guide to Ledger and friends
#34I've used the ledger-likes extensively, and they have two major problems: (1) One of the hard problems in personal finance is data capture and input validation. Programs like QuickBooks and Xero don't just hide the GL because they're being mean, they're doing it because even experienced bookkeepers make mistakes on the general ledger all the time. "Since it's a text file it's easy to read" solves exactly the wrong pr…
It's also true for business accounting. Getting data into your accounting/ERP software is always a clusterfuck, and I've yet to see a process that didn't require many hours/days of reconciliation and posting manual journal entries to close a reporting period.
Re: Plain Text Accounting, a guide to Ledger and friends
#35Also can someone link to what the actual text file looks like? The format. I can't find a decent example, I just want to see this human readable format, thanks.
Re: Plain Text Accounting, a guide to Ledger and friends
#36As someone who "manages" there accounts in spreadsheets what would be the advantages? I'm already downloading CSVs from my accounts which I clean and import into a spreadsheet. Also can someone link to what the actual text file looks like? The format. I can't find a decent example, I just want to see this human readable format, thanks.
Re: Plain Text Accounting, a guide to Ledger and friends
#37Re: Plain Text Accounting, a guide to Ledger and friends
#38As someone who "manages" there accounts in spreadsheets what would be the advantages? I'm already downloading CSVs from my accounts which I clean and import into a spreadsheet. Also can someone link to what the actual text file looks like? The format. I can't find a decent example, I just want to see this human readable format, thanks.
An example of Ledger/hledger's main file format:
2021-01-01 opening balances on january 1st
assets:checking $1000 ; a posting, increasing assets:checking's balance by $1000
assets:cash $100
liabilities $0
equity $-1100 ; each transaction must sum to zero
2021-03-05 client payment
assets:checking $2000
revenues:consulting $-2000 ; revenues/liabilities/equity normally appear negative
2021-03-20 Sprouts
expenses:food:groceries $100
assets:cash $40
assets:checking ; a missing amount will be inferred ($-140 here)Re: Plain Text Accounting, a guide to Ledger and friends
#39As someone who "manages" there accounts in spreadsheets what would be the advantages? I'm already downloading CSVs from my accounts which I clean and import into a spreadsheet. Also can someone link to what the actual text file looks like? The format. I can't find a decent example, I just want to see this human readable format, thanks.
Here you will find an example and more format details https://plaintextaccounting.org/quickref/#h.8v2r9qqwt9f8
Re: Plain Text Accounting, a guide to Ledger and friends
#40I've used the ledger-likes extensively, and they have two major problems: (1) One of the hard problems in personal finance is data capture and input validation. Programs like QuickBooks and Xero don't just hide the GL because they're being mean, they're doing it because even experienced bookkeepers make mistakes on the general ledger all the time. "Since it's a text file it's easy to read" solves exactly the wrong pr…