1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
|
\input texinfo @c -*-texinfo-*-
@setfilename ledger.info
@settitle Ledger: Command-Line Accounting
@documentencoding iso-8859-1
@iftex
@finalout
@end iftex
@titlepage
@title Ledger: Command-Line Accounting
@author John Wiegley
@end titlepage
@node Top, Introduction, (dir), (dir)
@top Overview
@c Page published by Emacs Muse begins here
@menu
* Introduction::
* Running Ledger::
* Keeping a ledger::
@end menu
@node Introduction, Running Ledger, Top, Top
@chapter Introduction
Ledger is an accounting tool with the moxie to exist. It provides no
bells or whistles, and returns the user to the days before user
interfaces were even a twinkling in their father's CRT.
What it does offer is a double-entry accounting ledger with all the
flexibility and muscle of its modern day cousins, without any of the
fat. Think of it as the Bran Muffin of accounting tools.
To use it, you need to start keeping a ledger. This is the basis of
all accounting, and if you haven't started yet, now is the time to
learn. The little booklet that comes with your checkbook is a ledger,
so we'll describe double-entry accounting in terms of that.
A checkbook ledger records debits (subtractions, or withdrawals) and
credits (additions, or deposits) with reference to a single account:
the checking account. Where the money comes from, and where it goes
to, are described in the payee field, where you write the person or
company's name. The ultimate aim of keeping a checkbook ledger is to
know how much money is available to spend. That's really the aim of
all ledgers.
What computers add is the ability to walk through these transactions,
and tell you things about your spending habits; to let you devise
budgets and get control over your spending; to squirrel away money
into virtual savings account without having to physically move money
around; etc. As you keep your ledger, you are recording information
about your life and habits, and sometimes that information can start
telling you things you aren't aware of. Such is the aim of all good
accounting tools.
The next step up from a checkbook ledger, is a ledger that keeps track
of all your accounts, not just checking. In such a ledger, you record
not only who gets paid---in the case of a debit---but where the
money came from. In a checkbook ledger, its assumed that all the
money comes from your checking account. But in a general ledger, you
write transaction two-lines: the source account and target account.
@emph{There must always be a debit from at least one account for every
credit made to another account}. This is what is meant by
``double-entry'' accounting: the ledger must always balance to zero,
with an equal number of debits and credits.
For example, let's say you have a checking account and a brokerage
account, and you can write checks from both of them. Rather than keep
two checkbooks, you decide to use one ledger for both. In this
general ledger you need to record a payment to Pacific Bell for your
monthly phone bill. The cost is $23.00, let's say, and you want to
pay it from your checking account. In the general ledger you need to
say where the money came from, in addition to where it's going to.
The entry might look like this:
@example
9/29 BAL Pacific Bell $-200.00 $-200.00
Equity:Opening Balances $200.00
9/29 BAL Checking $100.00 $100.00
Equity:Opening Balances $-100.00
9/29 100 Pacific Bell $23.00 $223.00
Checking $-23.00 $77.00
@end example
The first line shows a payment to Pacific Bell for $23.00. Because
there is no ``balance'' in a general ledger---it's always zero---we
write in the total balance of all payments to ``Pacific Bell'', which
now is $223.00 (previously the balance was $200.00). This is done by
looking at the last entry for ``Pacific Bell'' in the ledger, adding
$23.00 to that amount, and writing the total in the balance column.
And the money came from ``Checking''---a withdrawal of $23.00---which
leaves the ending balance in ``Checking'' at $77.00. This is a very
manual procedure; but that's where computers come in...
The transaction must balance to $0: $23 went to Pacific Bell, $23 came
from Checking. There is nothing left over to be accounted for, since
the money has simply moved from one account to another. This is the
basis of double-entry accounting: that money never pops in or out of
existence; it is always a transaction from one account to another.
Keeping a general ledger is the same as keeping two separate ledgers:
One for Pacific Bell and one for Checking. In that case, each time a
payment is written into one, you write a corresponding withdrawal into
the other. This makes it easier to write in a ``running balance'',
since you don't have to look back at the last time the account was
referenced---but it also means having a lot of ledger books, if you
deal with multiple accounts.
Enter the beauty of computerized accounting. The purpose of the
Ledger program is to make general ledger accounting simple, by keeping
track of the balances for you. Your only job is to enter the
transactions. If a transaction does not balance, Ledger will display
an error and indicate which transaction is wrong.@footnote{In some
special cases, it will automatically balance the entry for you.}
In summary, there are two aspects of Ledger use: updating the ledger
data file, and using the Ledger tool to view the summarized result of
your entries.
And just for the sake of example---as a starting point for those who
want to dive in head-first---here are the ledger entries from above,
formatting as the ledger program wishes to see them:
@example
; Set the year for subsequent entries to 2004
Y 2004
9/29 Pacific Bell
Payable:Pacific Bell $-200.00
Equity:Opening Balances
9/29 Checking
Accounts:Checking $100.00
Equity:Opening Balances
9/29 Pacific Bell
Payable:Pacific Bell $23.00
Accounts:Checking
@end example
The account balances and registers in this file, if saved as
@samp{ledger.dat}, could be reported using:
@example
$ ledger -f ledger.dat balance
$ ledger -f ledger.dat register checking
$ ledger -f ledger.dat register bell
@end example
@menu
* Building the program::
@end menu
@node Building the program, , Introduction, Introduction
@section Building the program
Ledger is written in ANSI C++, and should compile on any platform. It
depends only on the GNU multiprecision integer library (libgmp), and
the Perl regular expression library (libpcre). It was developed using
GNU make and gcc 3.3.
To build and install once you have these libraries on your system,
enter these commands:
@example
make
cp ledger /usr/local/bin
@end example
Note that when building GNUmp, make sure to pass the
@samp{--enable-cxx} flag to configure, otherwise it will not build
@strong{libgmpxx.a}. And in case it is not already on your system,
@strong{xmlparse.h} is part of the libxmltok package, and not expat.
@node Running Ledger, Keeping a ledger, Introduction, Top
@chapter Running Ledger
@menu
* Commands::
* Options::
* Format strings::
* Value expressions::
* Interval expressions::
* Plotting register data::
* Typical queries::
* File format::
* Using command options::
@end menu
@node Commands, Options, Running Ledger, Running Ledger
@section Commands
@subsection balance
The ``balance'' command reports the current balance of all accounts.
It accepts a list of optional regexps, which confine the balance
report to the matching accounts. If an account contains multiple
types of commodities, each commodity's total is reported separately.
@subsection register
The ``register'' command displays all the transactions occurring in a
single account, line by line. The account regexp must be specified as
the only argument to this command. If any regexps occur after the
required account name, the register will contain only those
transactions that match. Very useful for hunting down a particular
transaction.
The output from ``register'' is very close to what a typical checkbook,
or single account ledger, would look like. It also shows a running
balance. The final running balance of any register should always be
the same as the current balance of that account.
@subsection print
The ``print'' command prints out ledger entries just as they appear in
the original ledger. They will be properly formatted, and output in
the most economic form possible. The ``print'' command also takes a
list of optional regexps, which will cause only those transactions
which match in some way to be printed.
The ``print'' command is a handy way to clean up a ledger file whose
formatting has gotten out of hand.
@subsection equity
Equity transactions are used to establish the starting value of an
account. You might think of equity as the ``ether'' from which initial
balances appear.
@subsection entry
The three most laborious tasks of keeping a ledger are: adding new
entries, reconciling accounts, and generating reports. To address the
first of these, there is a sub-command to ledger called ``entry''. It
works on the principle that 80% of all transactions are variants of
earlier transactions. Here's how it works:
Let's say you have an old transaction of the following form:
@example
2004/03/15 * Viva Italiano
Expenses:Food $12.45
Expenses:Tips $2.55
Liabilities:MasterCard $-15.00
@end example
Now it's 2004/4/9, and you've just eating at Viva Italiano again. The
exact amounts are different, but the overall form is the same. With
the ``entry'' command you can type:
@example
ledger entry 2004/4/9 viva food 11.00 tips 2.50
@end example
This will produce the following output:
@example
2004/04/09 Viva Italiano
Expenses:Food $11.00
Expenses:Tips $2.50
Liabilities:MasterCard $-13.50
@end example
This works by finding a transaction that matches the regexp ``viva'',
and then assuming that any accounts or amounts you specify will be the
same as that earlier transaction. If Ledger does not succeed in
generating a new entry for you, it will print an error and set the
exit code to 1.
There is a shell script in the distribution called ``entry'', which
simplifies the task of adding a new entry to your ledger, and then
launches @samp{vi} to let you confirm that the entry looks appropriate.
@node Options, Format strings, Commands, Running Ledger
@section Options
@subsection Basic options
@samp{--help} (@samp{-h}) prints a summary of all the options, and
what they are used for. This can be a handy way to remember which
options do what. This help screen is also printed if ledger is run
without a command.
@sp 1
@samp{--version} (@samp{-v}) prints the current version of ledger and
exits. This is useful for sending bug reports, to let the author know
which version of ledger you are using.
@sp 1
@samp{--init FILE} (@samp{-i FILE}) causes FILE to be read by ledger before any
other ledger file. This file may not contain any transactions, but it
may contain option settings. To specify options in the init file, use
the same syntax as the command-line. Here's an example init file:
@example
--price-db ~/finance/.pricedb
@end example
Option settings on the command-line or in the environment always take
precedence over settings in the init file.
@sp 1
@samp{--file FILE} (@samp{-f FILE}) reads FILE as a ledger file. This command
may be used multiple times. FILE may also be a list of file names
separated by colons. Typically, the environment variable
@samp{LEDGER_FILE} is set, rather than using this command-line option.
@sp 1
@samp{--cache FILE} identifies FILE as the default binary cache file. That
is, if the ledger files to be read are specified using the environment
variable @samp{LEDGER_FILE}, then whenever a command is finished a binary
copy will be written to the specified cache, to speed up the loading
time of subsequent queries. This filename can also be given using the
environment variable @samp{LEDGER_CACHE}, or by putting the option into
your init file.
@sp 1
@samp{--output FILE} (@samp{-o FILE}) redirects output from any command to
@samp{FILE}. By default, all output goes to standard output.
@subsection Report filtering
@samp{--begin-date DATE} (@samp{-b DATE}) constrains the report to
entries on or after @samp{DATE}. Only entries after that date will be
calculated, which means that the running total in the balance report
will always start at zero with the first matching entry. (Note: This
is different from using @samp{--display} to constrain what is
displayed).
@sp 1
@samp{--end-date DATE} (@samp{-e DATE}) contrains the report so that
entries on or after @samp{DATE} are not considered. This ending date
is not inclusive, therefore always use a date that is later than the
last entry you want to see.
@sp 1
@samp{--current}(@samp{-c}) displays only entries occurring on or
before the current date.
@sp 1
@samp{--cleared} (@samp{-C}) displays only transactions whose entry
has been marked ``cleared'' (by placing an asterix to the right of the
date).
@sp 1
@samp{--uncleared} (@samp{-U}) displays only transactions whose entry
has not been marked ``cleared'' (i.e., if there is no asterix to the
right of the date).
@sp 1
@samp{--real} (@samp{-R}) displays only real transactions, not
virtual. (A virtual transaction is indicated by surrounding the
account name with parentheses or brackets; see the section on using
virtual transactions for more information).
@sp 1
@samp{--related} (@samp{-r}) displays transactions that are related to
whichever transactions would otherwise have matched the filtering
criteria. In the register report, this shows where money went to, or
the account it came from. In the balance report, it shows all the
accounts affected by entries having a related transaction. For
example, if a file had this entry:
@example
2004/03/20 Safeway
Expenses:Food $65.00
Expenses:Cash $20.00
Assets:Checking
@end example
And if the register command was:
@example
ledger -r register food
@end example
This would be the output, to show the transactions related to the
transaction that matched.
@example
2004/03/20 Safeway Expenses:Cash $-20.00 $-20.00
Assets:Checking $85.00 $65.00
@end example
@subsection Output customization
@samp{--date-format STR} (@samp{-y STR})
@sp 1
@samp{--format STR} (@samp{-F STR})
@samp{--balance-format STR}
@samp{--equity-format STR}
@samp{--register-format STR}
@samp{--plot-value-format STR}
@samp{--print-format STR}
@samp{--plot-total-format STR}
@sp 1
@samp{--empty} (@samp{-E})
@sp 1
@samp{--collapse} (@samp{-n})
@samp{--subtotal} (@samp{-s})
@sp 1
@samp{--sort EXPR} (@samp{-S EXPR})
@sp 1
@samp{--interval STR} (@samp{-z STR})
@sp 1
@samp{--dow}
@samp{--weekly} (@samp{-W})
@samp{--monthly} (@samp{-M})
@samp{--yearly} (@samp{-Y})
@sp 1
@samp{--limit EXPR} (@samp{-l EXPR}) limits which transactions take
part in the calculations of a report.
@samp{--display EXPR} (@samp{-d EXPR}) limits which transactions or
accounts or actually displayed in a report. They might still be
calculated, and be part of the running total of a register report, for
example, but they will not be displayed. This is useful for seeing
last month's checking transactions, against a running balance that
includes all past transactions:
@example
ledger -d "d>=[2004/8]" reg checking
@end example
@sp 1
@samp{--value EXPR} (@samp{-t EXPR})
@samp{--total EXPR} (@samp{-T EXPR})
@sp 1
@samp{--value-data} (@samp{-j})
@samp{--total-data} (@samp{-J})
@subsection Commodity reporting
@samp{--price-db FILE} (@samp{-P FILE})
@sp 1
@samp{--download} (@samp{-Q})
@sp 1
@samp{--price-exp MINS} (@samp{-L MINS})
@sp 1
@samp{--quantity} (@samp{-O})
@samp{--basis} (@samp{-B})
@samp{--market} (@samp{-V})
@samp{--gain} (@samp{-G})
@samp{--average} (@samp{-A})
@samp{--deviation} (@samp{-D})
@samp{--trend} (@samp{-X})
@samp{--weighted-trend} (@samp{-Z})
@subsection Environment variables
Every option to ledger may be set using an environment variable. If
the option has a long option named @samp{--this-option}, then setting
the environment variable @samp{LEDGER_THIS_OPTION} will have the same
affect. Options on the command-line always take precedence over
environment variable settings.
@node Format strings, Value expressions, Options, Running Ledger
@section Format strings
Format strings can be used to change the output format of reports.
They are specified by passing a formatting string to the
@samp{--format} (@samp{-F}) option. Within that string, constructs
are allowed which make it possible to display the various parts of an
account or transaction in custom ways.
Within a format strings, a subtitution is specified using a percent
character (@samp{%}). The basic format of all substitutions is:
@example
%[-][MIN WIDTH][.MAX WIDTH]EXPR
@end example
If the optional minus sign (@samp{-}) follows the percent character,
whatever is subtituted will be left justified. The default is right
justified. If a mininum width is given next, the substituted text
will be at least that wide, perhaps wider. If a period and a maximum
width is given, the substituted text will never be wider than this,
and will be truncated to fit. Here are some examples:
@example
%-P An entry's payee, left justified
%20P The same, right justified, at least 20 chars wide
%.20P The same, no more than 20 chars wide
%-.20P Left justified, maximum twenty chars wide
@end example
The expression following the format constraints can be a single
letter, or an expression enclosed in parentheses or brackets. The
allowable expressions are:
@table @asis
@item %
Inserts a percent sign.
@item t
Inserts the results of the value expression specified by @samp{-t}.
If @samp{-t} was not specified, the current report style's value
expression is used.
@item T
Inserts the results of the value expression specified by @samp{-T}.
If @samp{-T} was not specified, the current report style's value
expression is used.
@item |
Inserts a single space. This is useful if a width is specified, for
inserting a certain number of spaces.
@item _
Inserts a space for each level of an account's depth. That is, if an
account has two parents, this construct will insert two spaces. If a
minimum width is specified, that much space is inserted for each level
of depth. Thus @samp{%5_}, for an account with four parents, will
insert twenty spaces.
@item (EXPR)
Inserts the amount resulting from the value expression given in
parentheses. To insert five times the total value of an account, for
example, one could say @samp{%12(5*O)}. Note: It's important to put
the five first in that expression, so that the commodity doesn't get
stripped from the total.
@item [DATEFMT]
Inserts the result of formatting a transaction's date with a date
format string, exactly like those supported by @code{strftime}. For
example: @samp{%[%Y/%m/%d %H:%M:%S]}.
@item D
By default, this is the same as @samp{%[%Y/%m%/d]}. The date format
used can be changed at any time with the @samp{-y} flag, however.
Using @samp{%D} gives the user more control over the way dates are
output.
@item X
If a transaction has been cleared, this inserts @samp{*} followed by a
space; otherwise nothing is inserted.
@item C
Inserts the checking number for an entry, in parentheses, followed by
a space; if none was specified, nothing is inserted.
@item P
Inserts the payee related to a transaction.
@item n
Inserts the optimal short name for an account. This is normally used
in balance reports. It prints a parent account's name if that name
has not been printed yet, oherwise it just prints the account's name.
@item N
Inserts the full name of an account.
@item o
Inserts the ``optimized'' form of a transaction's amount. This is
used by the print report. In some cases, this inserts nothing; in
others, it inserts the tranaction amount and its cost. It's use is
not recommend unless you are modifying the print report.
@item /
The @samp{%/} construct is special. It separates a format string
between what should be printed for the first transaction in an entry,
and what should be printed for all subsequent transactions. If not
used, the same format string is applied to all transactions.
@end table
Here are default format strings for the balance and print reports,
just to give an example:
@example
%20T %2_%-n\n
\n%D %X%C%P\n %-34N %12o\n%/ %-34N %12o\n
@end example
@node Value expressions, Interval expressions, Format strings, Running Ledger
@section Value expressions
A value expression is a language used by ledger wherever a value is
involved. Some examples are:
@enumerate
@item Values displayed in reports
@item Predicates, or which transactions get calculated/displayed
@item Sorting criteria, or how transactions are sorted
@item Matching criteria used by automated transactions
@end enumerate
Value expressions support most simple math and logic operators, in
addition to a set of one letter functions and variables. A function's
argument is whatever follows it.
@subsection Variables
Below are the one letter variables available in any value expression.
For the register and print commands, these variables relate to
individual transactions, and sometimes the account affected by a
transaction. For the balance command, these variables relate to
accounts -- often with a subtle difference in meaning. The use of
each variable for both is specified.
@table @asis
@item t
This maps to whatever the user specified with @samp{-t}. In a
register report, @samp{-t} changes the value column; in a balance
report, it has no meaning by default. If @samp{-t} was not specified,
the current report style's value expression is used.
@item T
This maps to whatever the user specified with @samp{-T}. In a
register report, @samp{-T} changes the totals column; in a balance
report, this is the value given for each account. If @samp{-T} was
not specified, the current report style's value expression is used.
@item m
This is always the present moment/date.
@end table
@subsubsection Transaction/account details
@table @asis
@item d
A transaction's date, as the number of seconds past the epoch. This
is always ``today'' for an account.
@item a
The transaction's amount; the balance of an account, without
considering children.
@item c
The cost of a transaction; the cost of an account, without its
children.
@item v
The market value of a transaction, or an account without its children.
@item g
The net gain (market value minus cost basis), for a transaction or an
account without its children. It is the same as @samp{v-c}.
@item l
The depth (``level'') of an account. If an account has one parent,
it's depth is one.
@item n
The index of a transaction, or the count of transactions affecting an
account.
@item X
1, if a transaction's entry has been cleared, 0 otherwise.
@item R
1, if a transaction is not virtual, 0 otherwise.
@end table
@subsubsection Calculated totals
@table @asis
@item O
The total of all transactions seen so far, or the total of an account
and all its children.
@item N
The total count of transactions affecting an account and all its
children.
@item C
The total cost of all transactions seen so far; the total cost of an
account and all its children.
@item V
The market value of all transactions seen so far, or of an account and
all its children.
@item G
The total net gain (market value minus cost basis), for a series of
transactions, or an account and its children. It is the same as
@samp{V-C}.
@end table
@subsection Functions
The available one letter functions are:
@table @asis
@item -
Negates the argument.
@item A
The absolute value of the argument.
@item S
Strips the commodity from the argument.
@item M
The median of the argument; @samp{Mx} is the same as @samp{x/n}.
@item D
The deviation of the argument; @samp{Dx} is the same as @samp{x-x/n}.
@item P
The present market value of the argument. The syntax @samp{P(x,d)} is
supported, which yields the market value at time @samp{d}.
@end table
@subsection Operators
The binary and ternary operators, in order of precedence, are:
@enumerate
@item @samp{* /}
@item @samp{+ -}
@item @samp{! < > =}
@item @samp{& | ?:}
@end enumerate
@subsection Complex expressions
More complicated expressions are possible using:
@table @asis
@item NUM
A plain integer represents a commodity-less amount.
@item @{AMOUNT@}
An amount in braces can be any kind of amount supported by ledger,
with or without a commodity. Use this for decimal values.
@item /REGEXP/
A regular expression that matches against an account's full name. If
a transaction, this will match against the account affected by the
transaction.
@item //REGEXP/
A regular expression that matches against an entry's payee name.
@item ///REGEXP/
A regular expression that matches against an account's base name. If
a transaction, this will match against the account affected by the
transaction.
@item (EXPR)
A sub-expression is nested in parenthesis. This can be useful passing
more complicated arguments to functions, or for overriding the natural
precedence order of operators.
@item [DATE]
Useful specifying a date in plain terms. For example, you could say
@samp{[2004/06/01]}.
@end table
@node Interval expressions, Plotting register data, Value expressions, Running Ledger
@section Interval expressions
@node Plotting register data, Typical queries, Interval expressions, Running Ledger
@section Plotting register data
@node Typical queries, File format, Plotting register data, Running Ledger
@section Typical queries
Once you have an orderly and well-organized general ledger, the next
step is to generate orderly and well-organized reports. This is where
the Ledger command-line tool comes in. With it, you can balance your
checkbook, see where your money is going, tell whether you've made a
profit this year, and compute the present value of your retirement
accounts. And all with the simplest of interfaces, the command-line.
The most often used command will be the ``balance'' command:
@example
export LEDGER=/home/johnw/doc/ledger.dat
ledger balance
@end example
Here I've set my Ledger environment variable to point to where my
ledger file is hiding. Thereafter, I needn't specify it again.
The balance command prints out the summarized balances of all my
top-level accounts, excluding sub-accounts. In order to see the
balances for a specific account, just specify a regular expression
after the balance command:
@example
ledger balance expenses:food
@end example
This will show all the money that's been spent on food, since the
beginning of the ledger. For food spending just this month
(September), use:
@example
ledger -d sep balance expenses:food
@end example
Or maybe I want to see all of my assets, in which case the -s (show
sub-accounts) option comes in handy:
@example
ledger balance -s
@end example
To exclude a particular account, use a regular expression with a
leading minus sign. The following will show all expenses, but without
food spending:
@example
ledger balance expenses -food
@end example
If you want to show all accounts but for one account, remember to use
``--'' to separate the exclusion pattern from the options list:
@example
ledger balance -- -equity
@end example
@node File format, Using command options, Typical queries, Running Ledger
@section File format
The ledger file format is quite simple, but supports many options.
These are summarized here.
The initial character of each line determines what that line means,
and how it should be parsed. The possibilities are:
@table @strong
@item NUMBER
A line starting with a number denotes a regular ledger entry. It
may be followed by any number of lines that beginning whitespace, to
denote account transactions. The format of the header line is:
@example
DATE [*] [(CODE)] DESC
@end example
@item +
If a line begins with plus, it denotes an inclusion regexp that
will always be considered, as if it had been specified by the user
at the end of their command-line.
@item @strong{-}
If a line begins with minus, it denotes an exclusion regexp that
will always be considered, as if it had been specified by the user
at the end of their command-line.
@item @strong{=}
If a line begins with equals, it denotes an automated transaction.
The next item on the line must be a regular expression. Any number
of such lines may appear, with no intervening whitespace.
Following this block of lines can be a list of account transactions
preceded by whitespace.
@item !WORD
A line beginning with an exclamation mark denotes a command
directive. It must be immediately followed by a word specifying
which directories. At the moment, only @samp{!include} is supported, for
including the content of other ledger files into the current one.
@item whitespace
A line beginning with whitespace, which is not part of a regular or
automated transaction, is ignored.
@end table
@quotation
If a line begins with semicolon it is ignored. This is the
preferred method of entering comments.
@end quotation
@table @strong
@item Y NUM
If a line begins with a capital Y, it denotes the year to be used
for all subsequent entries that specify a date, whatever their type.
This sets the ``default year'', which ordinarily is the current year
at the time the program is run. Useful at the beginning of a file
to specify the file's year.
@item P DATE SYMBOL PRICE
Capital P specifies a historical price for a commodity. Any such
number of entries are allowed. These are usually found in a pricing
history file (see the @samp{-Q} option).
@item C SYMBOL PRICE
Capital C specifies a conversion price for a commodity. This has
no reference to time, and always takes precedence over any
historical price (even very current prices).
@item N SYMBOL
Capital N indicates that no implicit price conversions should be
obtained for the given symbol. This means that no quotes will ever
be downloaded for that symbol. Useful for a home currency, such as
the dollar ($). Be aware that these pricing options will set the
default reporting characteristics for a commodity. Thus it is
recommended that pricing options occur only after all regular ledger
entries have been parsed.
@item i DATE TIME ACCOUNT [DESC]
Lowercase (and capital) i indicate an time-in event. This will
start accumulating hours in the account specified. Usually these
entries are created in a timelog file by the timeclock program,
which is distributed with ledger. There must be two spaces between
the account name, and the optional description, if one is used.
@item o DATE TIME ACCOUNT [DESC]
Lowercase (and capital) o indicate an time-out event. This will
accumulate hours in the account specified. Usually these entries
are created in a timelog file by the timeclock program, which is
distributed with ledger. There must be two spaces between the
account name, and the optional description, if one is used.
@item b, h
Entries beginning with lowercase b and h are ignored. These are
special entries used by timeclock, but ignored by ledger.
@end table
@node Using command options, , File format, Running Ledger
@section Using command options
With all of the commands, various command-line options are allowed
that will modify the behavior of the command in some way. And while
the basic commands themselves are useful, you will often find
yourselves adding option flags to the command-line to modify those
commands.
The command-line options always occur before the command word. This
is done to distinguish them from the matching expressions that always
occur after the command word. The basic form of any command is:
@example
ledger [OPTIONS] COMMAND [MATCH]
@end example
Both the OPTIONS and MATCH expressions are optional. You could, for
example, just use ``ledger balance'' without any modification. This
would print the summarized total of all account types. But to get
more specific reporting, or to change the way the output looks, you
must use the options.
@menu
* Filtering options::
* Output formatting options::
* Commodity reporting options::
@end menu
@node Filtering options, Output formatting options, Using command options, Using command options
@subsection Filtering options
@table @strong
@item @strong{-b DATE}
Only consider entries occuring on or after the given date.
@item @strong{-e DATE}
Only consider entries occuring before the given date. The date is
not inclusive, so any entries occurring on that date will not be
used.
@item @strong{-c}
Only consider entries occurring on or before the current date.
@item @strong{-d DATE}
Only consider entries fitting the given date mask. DATE in this
case may be the name of a month, or a year, or a year and month,
such as ``2004/05''. It's a shorthand for having to specify -b and -e
together.
@item @strong{-C}
Only consider entries whose cleared flag has been set. The default
is to consider both.
@item @strong{-U}
Show only uncleared transactions. The default is to consider both.
@item @strong{-l AMT}
Limit balance reports to those which are greater than AMT.
@item @strong{-N REGEXP}
If an account matches REGEXP, only display it in the balance report
if its total is negative. Useful to avoid seeing credit in accounts
where one cannot spend that credit, and it will soon become negative
anyway (such as credit cards).
@item @strong{-R}
Ignore all virtual transactions, and report only the real balance
for each account.
@end table
@node Output formatting options, Commodity reporting options, Filtering options, Using command options
@subsection Output formatting options
@table @strong
@item @strong{-n}
Do not show subtotals in the balance report, or split transactions
in the register report.
@item @strong{-s}
If an account has children, show them in the balance report.
@item @strong{-S}
Sort the ledger after reading it. This may affect ``register'' and
``print'' output.
@item @strong{-E}
Also show empty accounts in the balance totals report.
@item @strong{-F}
Print full account names in all cases, such as ``Assets:Checking''
instead of just ``Checking''. Only used current by the ``balance''
command.
@item @strong{-M}
When used with the ``register'' command, causes only monthly subtotals
to appear. This can be useful for looking at spending patterns.
TODO: Accept an argument specifying the period to use.
@item @strong{-A}
Report totals in terms of the arithmetic mean (sum of all items
divided by the count). This does not work when multiple commodities
are used in the same account, in which case this option is ignored.
This option works both for balance reports, and for register reports
(where it displays the running total average). Be aware that in the
balance report, parent account totals reflect the arithmetic mean of
all the transactions---not the mean average of the subaccount
totals.
@item @strong{-T}
Report totals in terms of the average deviation from the average
value (i.e., the trend). The final total will indicate the amount
over or above the average value which it is expected you will next
spend/earn. When spending is regular, the trend will very slowly
move to zero.
@item @strong{-X}
Report totals in terms of the expected value of the next
transaction. This is determined by adding the average deviation to
the average value.
@item @strong{-W}
Report totals in terms of a time-weighted trend. Whereas @samp{-T}
reports the exact value trend irrespective of when the transactions
occurred, @samp{-W} takes into account the time between entries. If a
transaction occurs shortly after another, it will not affect the
running trend as much as if it occurs very much later. This style
of reports always adds a null transaction for the current date, so
that a current lack of spending is taken into account.
@end table
@node Commodity reporting options, , Output formatting options, Using command options
@subsection Commodity reporting options
@table @strong
@item @strong{-P FILE}
With this option, or if the environment variable @samp{PRICE_HIST} is
set, pricing information obtained from the Internet will be kept
in this file. Also, this file will be read after all other ledger
files are read, so that full history information is available for
reports.
@item @strong{-O}
Report commodity totals only, not their market value or basis cost.
@item @strong{-V}
Report commodity values in terms of their last known market price.
@item @strong{-B}
Report commodities in terms of their ``basis cost'', or what they cost
at time of purchase. Thus, totals in the register and balance
report reflect the total amount spent.
@item @strong{-G}
Report commodities in terms of their net gain, which is: the market
value minus the cost basis. A balance report using this option
shows very quickly the performance of investments.
@item @strong{-Q}
When needed (see the @samp{-L} option) pricing quotes are obtained by
calling the script @samp{getquote} (a sample Perl script is provided, but
the interface is kept simple so replacements may be made).
@item @strong{-L MINS}
When using the @samp{-Q} flag, new quotes are obtained only if current
pricing data is older than MINS minutes. The default is one day,
or 1440 minutes.
@item @strong{-p ARG}
If a string, such as ``COMM=$1.20'', the commodity COMM will be
reported only in terms of the conversion factor, which supersedes
all other pricing histories for that commodity. This can be used to
perform arbitrary value substitutions. For example, to report the
value of your dollars in terms of the ounces of gold they would buy,
use: -p ``$=0.00280112 AU'' (or whatever the current exchange rate
is).
@end table
@node Keeping a ledger, , Running Ledger, Top
@chapter Keeping a ledger
The most important part of accounting is keeping a good ledger. If
you have a good ledger, tools can be written to work whatever
mathematically tricks you need to better understand your spending
patterns. Without a good ledger, no tool, however smart, can help
you.
The Ledger program aims at making ledger entry as simple as possible.
Since it is a command-line tool, it does not provide a user interface
for keeping a ledger. If you like, you may use GnuCash to maintain
your ledger, in which case the Ledger program will read GnuCash's data
files directly. In that case, read the GnuCash manual now, and skip
to the next chapter.
If you are not using GnuCash, but a text editor to maintain your
ledger, read on. Ledger has been designed to make data entry as
simple as possible, by keeping the ledger format easy, and also by
automagically determining as much information as possible based on the
nature of your entries.
For example, you do not need to tell Ledger about the accounts you
use. Any time Ledger sees a transaction involving an account it knows
nothing about, it will create it. If you use a commodity that is new
to Ledger, it will create that commodity, and determine its display
characteristics (placement of the symbol before or after the amount,
display precision, etc) based on how you used the commodity in the
transaction.
Here is the Pacific Bell example from above, given as a Ledger
transaction:
@example
9/29 (100) Pacific Bell
Expenses:Utilities:Telephone $23.00
Assets:Checking $-23.00
@end example
As you can see, it is very similar to what would be written on paper,
minus the computed balance totals, and adding in account names that
work better with Ledger's scheme of things. In fact, since Ledger is
smart about many things, you don't need to specify the balanced
amount, if it is the same as the first line:
@example
9/29 (100) Pacific Bell
Expenses:Utilities:Telephone $23.00
Assets:Checking
@end example
For this entry, Ledger will figure out that $-23.00 must come from
``Assets:Checking'' in order to balance the entry.
@menu
* Stating where money goes::
* Assets and Liabilities::
* Commodities and Currencies::
* Accounts and Inventories::
* Understanding Equity::
* Dealing with Petty Cash::
* Archiving previous years::
* Virtual transactions::
* Automated transactions::
* Differences to Accounting Conventions::
* Using Emacs to Keep Your Ledger::
* Using GnuCash to Keep Your Ledger::
* Using timeclock to record billable time::
@end menu
@node Stating where money goes, Assets and Liabilities, Keeping a ledger, Keeping a ledger
@section Stating where money goes
Accountants will talk of `credits' and `debits', but their meaning is
often different from the layman's definitions. To avoid this semantic
overloading, we will refer to subtractions and additions. See
@uref{README.texi#DtAC, ``Differences to Accounting Conventions''} for how to
reconcile the two systems.
Recall that every transaction will involve two or more accounts.
Money is transferred from one group of accounts to another group. To
record the transaction, @emph{subtract} an amount from the source
accounts, and @emph{add} the same amount to the target accounts.
In order to write the Ledger entry correctly, you must determine where
the money comes from, and where it goes to. For example, when you are
paid, in order to add to your bank account, you must subtract from an
income account:
@example
9/29 My Employer
Assets:Checking $500.00
Income:Salary $-500.00
@end example
But wait, you say, why is the Income a negative figure? And when you
look at the balance totals for your ledger, you will certainly be
surprised to see Expenses as a positive figure, and Income as a
negative figure. Isn't that the opposite of how it should look?
It may take getting used to, but to properly use a general ledger you
will need to think in terms of money flows. Rather than Ledger
``fixing'' the minus signs, let's understand why they are there.
When you earn money, the money has to come from somewhere. Let's call
that somewhere ``society''. In order for society to give you an
income, you must take money away (withdraw) from society in order to
put it into (make a payment to) your bank. When you then spend that
money, it leaves your bank account (a withdrawal) and goes back to
society (a payment). This is why Income will appear negative---it
reflects the money you have drawn from society---and why Expenses will
be positive---it is the amount you've given back. These additions and
subtractions will always cancel each other out in the end, because you
don't have the ability to create new money: it must always come from
somewhere, and in the end must always leave. This is the beginning of
economy, after which the explanation gets terribly difficult.
Based on that explanation, here's another way to look at your balance
report: every negative figure means that that account or person or
place has less money now than when you started your ledger; and every
positive figure means that that account or person or place has more
money now that when you started your ledger. Make sense?
@node Assets and Liabilities, Commodities and Currencies, Stating where money goes, Keeping a ledger
@section Assets and Liabilities
Assets are money that you have, and Liabilities are money that you
owe. ``Liabilities'' is just a more inclusive name for Debts.
An Asset is typically increased by transferring money from an Income
account, such as when you get paid. Here is a typical entry:
@example
2004/09/29 My Employer
Assets:Checking $500.00
Income:Salary
@end example
Money, here, is coming from an Income account belonging to ``My
Employer'', and is being transferred to an account that belongs to you.
The money is now yours, which makes it an asset.
Liability accounts track money you owe to others. They come into play
whenever you borrow money to buy something, or if you owe someone
money. The usual way a liability is changed is by expending money,
thus transferring it to an Expenses account. For example:
@example
2004/09/30 Restaurant
Expenses:Dining $25.00
Liabilities:MasterCard
@end example
Your account balance will now show $25 spent on Dining, and a
corresponding $25 owed on your MasterCard. The MasterCard liability
will show up as negative, since it offsets the value of your assets.
@emph{The combined total of your Assets and Liabilities is your net
worth}. To see your current net worth, use this command:
@example
$ ledger balance ^assets ^liabilities
@end example
Relatedly, your Income accounts will show up negative, because they
transfer money @emph{from} an account in order to increase your
assets. Your Expenses accounts will show up positive, because that is
where the money went. The combined total your Income and Expenses is
your cash flow. A negative cash flow means that you are spending more
cash than you make. To see your current cash flow, use this command:
@example
$ ledger balance ^income ^expenses
@end example
Often, it is only important to view your income and expenses when
asking questions like, ``Where did my money go? Am I spending too
much on X? Am I making enough to cover my expenses?'' But most of
the time, you will usually want to ask other questions like, ``Is
there enough money in my checking account to cover my next credit card
bill?'' For these reasons, I recommend creating a script that removes
Income, Expenses, and Equity by default from your basic balance
report. The provided script ``bal'' does this for you, as well as
making it easier to run the balance command:
@example
$ bal
@end example
To use this script, it must be copied from the @strong{scripts}
directory in the ledger distribution, to a directory along your
@samp{PATH}. Also, you must set the environment variable
@samp{LEDGER} to point to your main ledger file.
Another common question to ask of your expenses is: How much do I
spend each month on X? Ledger provides a simple way of displaying
monthly totals for any account. Here is an example that summarizes
monthly automobile expenses:
@example
$ ledger -M register expenses:auto
@end example
This assumes, of course, that you use accounts like Expenses:Auto:Gas
and Expenses:Auto:Repair.
@menu
* Tracking reimbursable expenses::
@end menu
@node Tracking reimbursable expenses, , Assets and Liabilities, Assets and Liabilities
@subsection Tracking reimbursable expenses
Sometimes you will want to spend money on behalf of someone else,
which will eventually get repaid. Since the money is still ``yours'',
it is really an asset. And since the expenditure was for someone
else, you don't want it contaminating your Expenses reports. You will
need to keep an account for tracking reimbursements.
This is fairly easy to do in ledger. When spending the money, spend
it @emph{to} your Assets:Reimbursements, using a different account for
each person or business that you spend money for. For example:
@example
2004/09/29 Circuit City
Assets:Reimbursements:Company XYZ $100.00
Liabilities:MasterCard
@end example
This shows that you spent $100.00 on your MasterCard at Circuit City,
but that the expense was made on behalf of Company XYZ. Later, when
Company XYZ pays you back, you will transfer the money from your
reimbursement account to a regular asset account:
@example
2004/09/29 Company XYZ
Assets:Checking $100.00
Assets:Reimbursements:Company XYZ
@end example
This deposits the money owed from Company XYZ into your checking
account, presumably because they paid you back with a check.
But what to do if you run your own business, and you want to keep
track of expenses made on your own behalf, while still tracking
everything in a single ledger file? This is more complex, because you
need to track two separate things: 1) The fact that the money should
be reimbursed to you, and 2) What the expense account was, so that you
can later determine where your company is spending its money.
This kind of transaction is best handled with mirrored transactions in
two different files, one for your personal accounts, and one for your
company accounts. But keeping them in one file involves the same
kinds of transactions, so those are what is shown here. First, the
personal entry, which shows the need for reimbursement:
@example
2004/09/29 Circuit City
Assets:Reimbursements:Company XYZ $100.00
Liabilities:MasterCard
@end example
This is the same as above, except that you own Company XYZ, and are
keeping track of its expenses in the same ledger file. This entry
should be immediately followed by an equivalent entry, which shows the
kind of expense, and also notes the fact that $100.00 is now payable
to you:
@example
2004/09/29 Circuit City
Company XYZ:Expenses:Computer:Software $100.00
Company XYZ:Accounts Payable:Your Name
@end example
This second entry shows that Company XYZ has just spent $100.00 on
software, and that this $100.00 came from Your Name, which must be
paid back.
These two entries can also be merged, to make things a little clearer.
Note that all amounts must be specified now:
@example
2004/09/29 Circuit City
Assets:Reimbursements:Company XYZ $100.00
Liabilities:MasterCard $-100.00
Company XYZ:Expenses:Computer:Software $100.00
Company XYZ:Accounts Payable:Your Name $-100.00
@end example
To ``pay back'' the reimbursement, just reverse the order of everything,
except this time drawing the money from a company asset, paying it to
accounts payable, and then drawing it again from the reimbursement
account, and paying it to your personal asset account. It's easier
shown than said:
@example
2004/10/15 Company XYZ
Assets:Checking $100.00
Assets:Reimbursements:Company XYZ $-100.00
Company XYZ:Accounts Payable:Your Name $100.00
Company XYZ:Assets:Checking $-100.00
@end example
And now the reimbursements account is paid off, accounts payable is
paid off, and the $100.00 has been effectively transferred from the
company's checking account to your personal checking account. The
money simply ``waited''---in both Assets:Reimbursements:Company XYZ,
and Company XYZ:Accounts Payable:Your Name---until such time as it
could be paid off.
The value of tracking expenses from both sides like that is that you
do not contaminate your personal expense report with expenses made on
behalf of others, while at the same time making it possible to
generate accurate reports of your company's expenditures. It is more
verbose than just paying for things with your personal assets, but it
gives you a very accurate information trail.
The advantage to keep these doubled entries together is that they
always stay in sync. The advantage to keeping them apart is that it
clarifies the transfer's point of view. To keep the transactions in
separate files, just separate the two entries that were joined above.
For example, for both the expense and the pay-back shown above, the
following four entries would be created. Two in your personal ledger
file:
@example
2004/09/29 Circuit City
Assets:Reimbursements:Company XYZ $100.00
Liabilities:MasterCard $-100.00
2004/10/15 Company XYZ
Assets:Checking $100.00
Assets:Reimbursements:Company XYZ $-100.00
@end example
And two in your company ledger file:
@example
@@ Company XYZ
2004/09/29 Circuit City
Expenses:Computer:Software $100.00
Accounts Payable:Your Name $-100.00
2004/10/15 Company XYZ
Accounts Payable:Your Name $100.00
Assets:Checking $-100.00
@@@@
@end example
(Note: The @ above command means that all accounts mentioned in the
file are children of the specified account. In this case it means
that all activity in file relates to Company XYZ).
After creating these entries, you will always know that $100.00 was
spent using your MasterCard on behalf of Company XYZ, and that Company
XYZ spent the money on computer software and paid it back about two
weeks later.
@node Commodities and Currencies, Accounts and Inventories, Assets and Liabilities, Keeping a ledger
@section Commodities and Currencies
Ledger makes no assumptions about the commodities you use; it only
requires that you specify a commodity. The commodity may be any
non-numeric string that does not contain a period, comma, forward
slash or at-sign. It may appear before or after the amount, although
it is assumed that symbols appearing before the amount refer to
currencies, while non-joined symbols appearing after the amount refer
to commodities. Here are some valid currency and commodity
specifiers:
@example
$20.00 ; currency: twenty US dollars
40 AAPL ; commodity: 40 shares of Apple stock
60 DM ; currency: 60 Deutsch Mark
£50 ; currency: 50 British pounds
50e ; currency: 50 Euros (use appropriate symbol)
@end example
Ledger will examine the first use of any commodity to determine how
that commodity should be printed on reports. It pays attention to
whether the name of commodity was separated from the amount, whether
it came before or after, the precision used in specifying the amount,
whether thousand marks were used, etc. This is done so that printing
the commodity looks the same as the way you use it.
An account may contain multiple commodities, in which case it will
have separate totals for each. For example, if your brokerage account
contains both cash, gold, and several stock quantities, the balance
might look like:
@example
$200.00
100.00 AU
AAPL 40
BORL 100
FEQTX 50 Assets:Brokerage
@end example
This balance report shows how much of each commodity is in your
brokerage account.
Sometimes, you will want to know the current street value of your
balance, and not the commodity totals. For this to happen, you must
specify what the current price is for each commodity. The price can
be in any commodity, in which case the balance will be computed in
terms of that commodity. The usual way to specify prices is with a
file of price settings, which might look like this:
@example
AU=$357.00
AAPL=$37
BORL=$19
FEQTX=$32
@end example
Specify the prices file using the @samp{-p} option:
@example
ledger -p prices.db balance brokerage
@end example
Now the balance for your brokerage account will be given in US
dollars, since the prices database has specified conversion factors
from each commodity into dollars:
@example
$40880.00 Assets:Brokerage
@end example
You can convert from any commodity to any other commodity. Let's say
you had $5000 in your checking account, and for whatever reason you
wanted to know many ounces of gold that would buy. If gold is
currently $357 per ounce, then each dollar is worth 1/357 AU:
@example
ledger -p "$=0.00280112 AU" balance checking
@end example
@example
14.01 AU Assets:Checking
@end example
$5000 would buy 14 ounces of gold, which becomes the new display
commodity since a conversion factor was provided.
Commodities conversions can also be chained, up to a depth of 10.
Here is a sample prices database that uses chaining:
@example
AAPL=$15
$=0.00280112 AU
AU=300 Euro
Euro=MD 0.75
@end example
This is a roundabout way of reporting AAPL shares in their Deutsch
Mark equivalent.
@menu
* Commodity price histories::
@end menu
@node Commodity price histories, , Commodities and Currencies, Commodities and Currencies
@subsection Commodity price histories
Whenever a commodity is purchased using a different commodity (such as
a share of common stock using dollars), it establishes a price for
that commodity on that day. It is also possible, by recording price
details in a ledger file, to specify other prices for commodities at
any given time. Such price entries might look like those below:
@example
P 2004/06/21 02:17:58 TWCUX $27.76
P 2004/06/21 02:17:59 AGTHX $25.41
P 2004/06/21 02:18:00 OPTFX $39.31
P 2004/06/21 02:18:01 FEQTX $22.49
P 2004/06/21 02:18:02 AAPL $32.91
@end example
By default, ledger will not consider commodity prices when generating
its various reports. It will always report balances in terms of the
commodity total, rather than the current value of those commodities.
To enable pricing reports, several options are possible:
@table @strong
@item @strong{-P FILE}
With this option, or if the environment variable @samp{PRICE_HIST} is
set, pricing information obtained from the Internet will be kept
in this file. Also, this file will be read after all other ledger
files are read, so that full history information is available for
reports.
@item @strong{-O}
Report commodity totals only, not their market value or basis cost.
@item @strong{-V}
Report commodity values in terms of their last known market price.
@item @strong{-B}
Report commodities in terms of their ``basis cost'', or what they cost
at time of purchase. Thus, totals in the register and balance
report reflect the total amount spent.
@item @strong{-G}
Report commodities in terms of their net gain, which is: the market
value minus the cost basis. A balance report using this option
shows very quickly the performance of investments.
@item @strong{-Q}
When needed (see the @samp{-L} option) pricing quotes are obtained by
calling the script @samp{getquote} (a sample Perl script is provided, but
the interface is kept simple so replacements may be made).
@item @strong{-L MINS}
When using the @samp{-Q} flag, new quotes are obtained only if current
pricing data is older than MINS minutes. The default is one day,
or 1440 minutes.
@item @strong{-p ARG}
If a string, such as ``COMM=$1.20'', the commodity COMM will be
reported only in terms of the conversion factor, which supersedes
all other pricing histories for that commodity. This can be used to
perform arbitrary value substitutions. For example, to report the
value of your dollars in terms of the ounces of gold they would buy,
use: -p ``$=0.00280112 AU'' (or whatever the current exchange rate
is).
@end table
Note that the @samp{-B}, @samp{-O}, @samp{-V}, and @samp{-G} are mutually exclusive.
@node Accounts and Inventories, Understanding Equity, Commodities and Currencies, Keeping a ledger
@section Accounts and Inventories
Since Ledger's accounts and commodity system is so flexible, you can
have accounts that don't really exist, and use commodities that no one
else recognizes. For example, let's say you are buying and selling
various items in EverQuest, and want to keep track of them using a
ledger. Just add items of whatever quantity you wish into your
EverQuest account:
@example
9/29 Get some stuff at the Inn
Places:Black's Tavern -3 Apples
Places:Black's Tavern -5 Steaks
EverQuest:Inventory
@end example
Now your EverQuest:Inventory has 3 apples and 5 steaks in it. The
amounts are negative, because you are taking @emph{from} Black's Tavern in
order to add to your Inventory account. Note that you don't have to
use ``Places:Black's Tavern'' as the source account. You could use
``EverQuest:System'' to represent the fact that you acquired them
online. The only purpose for choosing one kind of source account over
another is for generate more informative reports later on. The more
you know, the better analysis you can perform.
If you later sell some of these items to another player, the entry
would look like:
@example
10/2 Strum Brightblade
EverQuest:Inventory -2 Steaks
EverQuest:Inventory 15 Gold
@end example
Now you've turned 2 steaks into 15 gold, courtesy of your customer,
Strum Brightblade.
@node Understanding Equity, Dealing with Petty Cash, Accounts and Inventories, Keeping a ledger
@section Understanding Equity
The most confusing entry in any ledger will be your equity account---
because starting balances can't come out of nowhere.
When you first start your ledger, you will likely already have money
in some of your accounts. Let's say there's $100 in your checking
account; then add an entry to your ledger to reflect this amount.
Where will money come from? The answer: your equity.
@example
10/2 Opening Balance
Assets:Checking $100.00
Equity:Opening Balances
@end example
But what is equity? You may have heard of equity when people talked
about house mortgages, as ``the part of the house that you own''.
Basically, equity is like the value of something. If you own a car
worth $5000, then you have $5000 in equity in that car. In order to
turn that car (a commodity) into a cash flow, or a credit to your bank
account, you will have to debit the equity by selling it.
When you start a ledger, you are probably already worth something.
Your net worth is your current equity. By transferring the money in
the ledger from your equity to your bank accounts, you are crediting
the ledger account based on your prior equity value. That is why,
when you look at the balance report, you will see a large negative
number for Equity that never changes: Because that is what you were
worth (what you debited from yourself in order to start the ledger)
before the money started moving around. If the total positive value
of your assets is greater than the absolute value of your starting
equity, it means you are making money.
Clear as mud? Keep thinking about it. Until you figure it out, put
``@samp{-- -Equity}'' at the end of your balance command, to remove the
confusing figure from the totals.
@node Dealing with Petty Cash, Archiving previous years, Understanding Equity, Keeping a ledger
@section Dealing with Petty Cash
Something that stops many people from keeping a ledger at all is the
insanity of tracking small cash expenses. They rarely generate a
receipt, and there are often a lot of small transactions, rather than
a few large ones, as with checks.
One solution is: don't bother. Move your spending to a debit card,
but in general ignore cash. Once you withdraw it from the ATM, mark
it as already spent to an ``Expenses:Cash'' category:
@example
2004/03/15 ATM
Expenses:Cash $100.00
Assets:Checking
@end example
If at some point you make a large cash expense that you want to track,
just ``move'' the amount of the expense from ``Expenses:Cash'' into the
target account:
@example
2004/03/20 Somebody
Expenses:Food $65.00
Expenses:Cash
@end example
This way, you can still track large cash expenses, while ignoring all
of the smaller ones.
@node Archiving previous years, Virtual transactions, Dealing with Petty Cash, Keeping a ledger
@section Archiving previous years
After a while, your ledger can get to be pretty large. While this
will not slow down the ledger program much---it's designed to process
ledger files very quickly---things can start to feel ``messy''; and
it's a universal complaint that when finances feel messy, people avoid
them.
Thus, archiving the data from previous years into their own files can
offer a sense of completion, and freedom from the past. But how to
best accomplish this with the ledger program? There are two commands
that make it very simple: ``print'', and ``equity''.
Let's take an example file, with data ranging from year 2000 until
2004. We want to archive years 2000 and 2001 to their own file,
leaving just 2003 and 2004 in the current file. So, use ``print'' to
output all the earlier entries to a file called @samp{ledger-old.dat}.
(Keeping in mind that the ending date is not inclusive, which is why
2002 is mentioned in the following command):
@example
$ ledger -f ledger.dat -b 2000/1/1 -e 2002/1/1 print \
> ledger-old.dat
@end example
To delete older data from the current ledger file, use ``print'' again,
this time specifying year 2002 as the starting date:
@example
$ ledger -f ledger.dat -b 2002/1/1 print > x
$ mv x ledger.dat
@end example
However, now the current file contains @emph{only} transactions from 2002
onward, which will not yield accurate present-day balances, because
the net income from previous years is no longer being tallied. To
compensate for this, we must append an equity report for the old
ledger at the beginning of the new one:
@example
$ ledger -f ledger-old.dat equity > equity.dat
$ cat equity.dat ledger.dat > x
$ mv x ledger.dat
$ rm equity.dat
@end example
Now the balances reported from @samp{ledger.dat} are identical to what
they were before the data was split.
How often should you split your ledger? You never need to, if you
don't want to. Even eighty years of data will not slow down ledger
much---and that's just using present day hardware! Or, you can keep
the previous and current year in one file, and each year before that
in its own file. It's really up to you, and how you want to organize
your finances. For those who also keep an accurate paper trail, it
might be useful to archive the older years to their own files, then
burn those files to a CD to keep with the paper records---along with
any electronic statements received during the year. In the arena of
organization, just keep in mind this maxim: Do whatever keeps you
doing it.
@node Virtual transactions, Automated transactions, Archiving previous years, Keeping a ledger
@section Virtual transactions
A virtual transaction is when you, in your mind, see money as moving
to a certain place, when in reality that money has not moved at all.
There are several scenarios in which this type of tracking comes in
handy, and each of them will be discussed in detail.
To enter a virtual transaction, surround the account name in
parentheses. This form of usage does not need to balance. However,
if you want to ensure the virtual transaction balances with other
virtual transactions in the same entry, use square brackets. For
example:
@example
10/2 Paycheck
Assets:Checking $1000.00
Income:Salary $-1000.00
(Debt:Alimony) $200.00
@end example
In this example, after receiving a paycheck an alimony debt is
increased---even though no money has moved around yet.
@example
10/2 Paycheck
Assets:Checking $1000.00
Income:Salary $-1000.00
[Savings:Trip] $200.00
[Assets:Checking] $-200.00
@end example
In this example, $200 has been deducted from checking toward savings
for a trip. It will appear as though the money has been moved from
the account into ``Savings:Trip'', although no money has actually moved
anywhere.
When balances are displayed, virtual transactions will be factored in.
To view balances without any virtual balances factored in, using the
``-R'' flag, for ``Reality''.
Write about: Saving for a Special Occasion; Keeping a Budget; Tracking
Allocated Funds.
@node Automated transactions, Differences to Accounting Conventions, Virtual transactions, Keeping a ledger
@section Automated transactions
As a Bahá'í, I need to compute Huqúqu'lláh whenever I acquire assets.
The exact details of this are a bit complex, so if you have further
interest, please consult the Web.
For any fellow Bahá'ís out there who want to track Huqúqu'lláh, the
Ledger tool makes this extremely easy. Just set up the following
automated transaction at the top of your ledger file:
@example
; These entries will compute Huqúqu'lláh based on the
; contents of the ledger.
= ^Income:
= ^Expenses:Rent$
= ^Expenses:Furnishings
= ^Expenses:Business
= ^Expenses:Taxes
= ^Expenses:Insurance
(Liabilities:Huqúqu'lláh) 0.19
@end example
This automated transaction works by looking at each transaction
appearing afterward in the ledger file. If any match the account
regexps, occurring after the equal signs above, 19% of the value of
that transaction is applied to the ``Liabilities:Huqúqu'lláh'' account.
So if $1000 is earned through Income:Salary, which is seen as a debit
from Income, a debit of $190 is applied to ``Liabilities:Huqúqu'lláh'';
if $1000 is spent on Rent---seen as a credit to the Expense account---a credit of $190 is applied to Huqúqu'lláh. The ultimate balance
of Huqúqu'lláh reflects how much must be paid to that account in order
to balance it to zero.
When you're ready to pay, just write a check directly to the account
``Liabilities:Huqúqu'lláh'':
@example
2003/01/01 (101) Baha'i Huqúqu'lláh Trust
Liabilities:Huqúqu'lláh $1,000.00
Assets:Checking
@end example
That's it. To see how much Huqúq is currently owed based on your
ledger entries, use:
@example
ledger balance Liabilities:Huqúq
@end example
@node Differences to Accounting Conventions, Using Emacs to Keep Your Ledger, Automated transactions, Keeping a ledger
@section Differences to Accounting Conventions
If you are an accountant, or you are familiar with accounting
terminology, then you might be tearing your hair out after reading the
above. Please don't!
Ledger is intended to make people comfortable with their finances; to
help them better control the flow of their money. Contemporary
accounting practices, on the other hand, often seem counter-intuitive
and confusing to the layman. To make Ledger more accessible, it
avoids the use of standard accounting conventions and terminology.
However, Ledger is flexible enough that you may interpret what is
happening however you wish.
Most probably, the following section will confuse you, and you should
skip it if you've managed to understand everything so far. However,
if you intend to communicate your accounting practices to a
professional accountant, the following explanations may be useful.
@table @strong
@item The entity
The individual or organisation under consideration: the someone or
something on whose behalf you are accounting. Probably you.
@item Assets
Future economic benefits controlled by the entity as a result of a
past transaction or event.
@item Liabilities
Future sacrifices of economic benefits that the entity is obliged to
make as a result of a past transaction or event.
@end table
The format of the data files used by Ledger is more akin to a general
journal than a ledger. In an accounting ledger, transactions are
grouped by account. In a general journal, transactions are commonly
listed in chronological order.
Often ``cash'' is used to refer to a liquid savings account at a bank,
rather than the physical notes and coins you may withdraw.
In general, an ``addition'' in Ledger is an accounting debit, and a
``subtraction'' in Ledger is an accounting credit. The following table
shows the ``normal'' balances for the different types of accounts.
Accountants avoid using negative balances where possible, instead
prefering a positive amount in ``credit'' balance.
@multitable @columnfractions 0.2 0.2 0.2 0.2 0.2
@item System @tab Asset @tab Liability @tab Income @tab Expense
@item @strong{Accounting} @tab debit @tab credit @tab credit @tab debit
@item @strong{Ledger} @tab positive @tab negative @tab negative @tab positive
@end multitable
That's correct: accountants call an addition to their cash a debit!
However, from the bank's perspective it is a credit: the accountant's
cash is a liability for the bank. Consequently, payments to the
account will show up as credits on his bank statement.
@node Using Emacs to Keep Your Ledger, Using GnuCash to Keep Your Ledger, Differences to Accounting Conventions, Keeping a ledger
@section Using Emacs to Keep Your Ledger
In the Ledger tarball is an Emacs module, @samp{ledger.el}. This module
makes the process of keeping a text ledger much easier for Emacs
users. I recommend putting this at the top of your ledger file:
@example
; -*-ledger-*-
@end example
And this in your @samp{.emacs} file, after copying @samp{ledger.el} to your
site-lisp directory:
@example
(load "ledger")
@end example
Now when you edit your ledger file, it will be in @samp{ledger-mode}.
@samp{ledger-mode} adds the following commands:
@table @strong
@item C-c C-a
For quickly adding new entries based on the form of older ones
(see previous section).
@item C-c C-c
Toggles the ``cleared'' flag of the transaction under point.
@item C-c C-r
Reconciles an account by displaying the transactions in another
buffer, where simply hitting the spacebar will toggle the cleared
flag of the transaction in the ledger. It also displays the current
cleared balance for the account in the modeline.
@end table
@node Using GnuCash to Keep Your Ledger, Using timeclock to record billable time, Using Emacs to Keep Your Ledger, Keeping a ledger
@section Using GnuCash to Keep Your Ledger
The Ledger tool is fast and simple, but it offers no custom method for
actually editing the ledger. It assumes you know how to use a text
editor, and like doing so. Perhaps an Emacs mode will appear someday
soon to make editing Ledger's data files much easier.
Until then, you are free to use GnuCash to maintain your ledger, and
the Ledger program for querying and reporting on the contents
of that ledger. It takes a little longer to parse the XML data format
that GnuCash uses, but the end result is identical.
Then again, why would anyone use a Gnome-centric, 35 megabyte behemoth
to edit their data, and a 65 kilobyte binary to query it...
@node Using timeclock to record billable time, , Using GnuCash to Keep Your Ledger, Keeping a ledger
@section Using timeclock to record billable time
The timeclock tool makes it easy to track time events, like clocking
into and out of a particular job. These events accumulate in a
timelog file.
Each in/out event may have an optional description. If the ``in''
description is a ledger account name, these in/out pairs may be viewed
as virtual transactions, adding time commodities (hours) to that
account.
For example, the command-line version of the timeclock tool (which is
written in Python) could be used to begin a timelog file like:
@example
$ export TIMELOG=$HOME/.timelog
$ ti ClientOne category
$ sleep 10
$ to waited for ten seconds
@end example
The @strong{.timelog} file now contains:
@example
i 2004/10/06 15:21:00 ClientOne category
o 2004/10/06 15:21:10 waited for ten seconds
@end example
Ledger can parse this directly, as if it had seen the following ledger
entry:
@example
2004/10/06 category
(ClientOne) 0.00277h
@end example
In other words, the timelog event pair is seen as adding 0.00277h (ten
seconds) worth of time to the ClientOne account. This would be
considered billable time, which later could be invoiced and credited
to accounts receivable:
@example
2004/11/01 (INV#1) ClientOne, Inc.
Receivable:ClientOne $0.10
ClientOne -0.00277h @@ $35.00
@end example
The above transaction converts the clocked time into an invoice for
the time spent, at an hourly rate of $35. Once the invoice is paid,
the money is deposited from the receivable account into a checking
account:
@example
2004/12/01 ClientOne, Inc.
Assets:Checking $0.10
Receivable:ClientOne
@end example
And now the time spent has been turned into hard cash in the checking
account.
The advantage to using timeclock and invoicing to bill time is that
you will always know, by looking at the balance report, exactly how
much unbilled and unpaid time you've spent working for any particular
client.
I like to @samp{!include} my timelog at the top of my company's accounting
ledger, with the attached prefix ``Billable'':
@example
; -*-ledger-*-
; This is the ledger file for my company. But first, include the
; timelog data, entering all of the time events within the umbrella
; account "Billable".
!include /home/johnw/.timelog Billable
; Here follows this fiscal year's transactions for the company.
2004/11/01 (INV#1) ClientOne, Inc.
Receivable:ClientOne $0.10
Billable:ClientOne -0.00277h @@ $35.00
2004/12/01 ClientOne, Inc.
Assets:Checking $0.10
Receivable:ClientOne
@end example
@c Page published by Emacs Muse ends here
@contents
@bye
|