cheatsheets/ledger-csv.md

22 lines
720 B
Markdown
Raw Permalink Normal View History

2014-10-08 04:48:05 +00:00
---
title: Ledger CSV format
2015-12-01 05:41:43 +00:00
category: Ledger
2014-10-08 04:48:05 +00:00
---
2017-08-29 15:43:49 +00:00
## Ledger CSV format
{: .-one-column}
2014-10-08 04:48:05 +00:00
2017-08-29 15:43:49 +00:00
```
$ ledger csv
```
{: .-setup}
2014-10-08 04:48:05 +00:00
2017-08-29 15:43:49 +00:00
```csv
date , code , desc , account , currency , amt , pending/cleared , notes
"2013/09/02" , "" , "things" , "Assets:Cash" , "P" , "-2000" , "*" , ""
"2013/09/02" , "" , "things" , "Liabilities:Card" , "P" , "-200" , "*" , ""
"2013/09/02" , "" , "things" , "Expenses:Things" , "P" , "2200" , "*" , ""
"2013/09/04" , "" , "stuff" , "Assets:Cash" , "P" , "-20" , "*" , ""
"2013/09/04" , "" , "stuff" , "Expenses:Others" , "P" , "20" , "*" , ""
2017-08-29 15:43:49 +00:00
```