Created
March 1, 2019 10:14
-
-
Save barrucadu/6fe952232e28e8e6290457610f8ced8a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; treat the remaining balance on the credit card as an asset. | |
| 2019-01-01 Got a new credit card | |
| assets:creditcard £10000.00 | |
| liabilities:creditcard | |
| 2019-02-01 Spending some money on my credit card | |
| expenses:ducks £100.00 | |
| assets:creditcard | |
| 2019-03-01 Spending some more money on my credit card | |
| expenses:geese £100.00 | |
| assets:creditcard | |
| ; $ hledger balance -H creditcard | |
| ; £9800.00 assets | |
| ; £9800.00 creditcard | |
| ; £-10000.00 liabilities | |
| ; £-10000.00 creditcard | |
| ; -------------------- | |
| ; £-200.00 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; treat the money spent on the credit card as a liability. | |
| 2019-02-01 Spending some money on my credit card | |
| expenses:ducks £100.00 | |
| liabilities:creditcard | |
| 2019-03-01 Spending some more money on my credit card | |
| expenses:geese £100.00 | |
| liabilities:creditcard | |
| ; $ hledger balance -H creditcard | |
| ; £-200.00 liabilities | |
| ; £-200.00 creditcard | |
| ; -------------------- | |
| ; £-200.00 |
adept
commented
Mar 1, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment