Personal Accounts - Posting Table - Income as negative (1 Viewer)

essaytee

Need a good one-liner.
Local time
Tomorrow, 07:43
Joined
Oct 20, 2008
Messages
512
Just over a year ago I started out designing a schema for a personal finance/accounts system. I received a lot of help at that time, here's the thread. I wanted it to replace my reliance on Quicken. Since then, other things got in the way so I didn't progress it much further. Anyway, now I have some time and I've re-read all my notes to get back up to speed.

The following is the posting table:
Code:
tbl_Post
   Post_ID           pk
   Trans_ID         fk
   Account_ID      fk
   Unit_Price
   Unit_Quantity
   Reconcile_ID    fk

There will be at least two postings per transaction in order to zero out. My query relates to the handling of income/wages. I'm only using the one amount field as opposed to a debit and credit fields. My intention is to use the sign of the amount (positive or negative) for the system to work out the debit and credits.

In order to account for wages, the sign of the amount is negative and it's a positive amount hitting the bank account. It's the negative sign associated to wages that seems to be not quite right, though the transaction correctly balances back to zero.

I'd appreciate any suggestions (or confirmation).
 

pbaldy

Wino Moderator
Staff member
Local time
Today, 14:43
Joined
Aug 30, 2003
Messages
36,127
As a reformed bean-counter I can confirm that income is normally a credit.
 

MarkK

bit cruncher
Local time
Today, 14:43
Joined
Mar 17, 2004
Messages
8,186
Yeah, record your revenue with a minus sign in front. Think of it as the minus sign representing the reality of the person who payed you, so the money coming to you is a negative value at its origin (the revenue account), but a positive amount when it hits your bank account (the asset account).
 

essaytee

Need a good one-liner.
Local time
Tomorrow, 07:43
Joined
Oct 20, 2008
Messages
512
Thanks Paul & Mark.

After entering heaps of sample data, all seems in order. I just needed confirmation that I was applying the correct sign to the income amount.
 

pbaldy

Wino Moderator
Staff member
Local time
Today, 14:43
Joined
Aug 30, 2003
Messages
36,127
No problem and good luck!
 

gemma-the-husky

Super Moderator
Staff member
Local time
Today, 22:43
Joined
Sep 12, 2006
Messages
15,660
double entry:

as far as a bank account goes, in OUR books, money going in is plus/debit, and out is minus/credit. So income is plus, and expenses are minus. In a true double entry system, there will be an opposite entry for each posting to the bank account in an income or expense account. Old ledgers did have a debit side (left), and a credit side (right), rather than a single column of pluses and minuses. We jokingly say the debit is the side nearest to the window!

In this sense, the money going in, which is plus in the bank, becomes minus in the income account, to make the double entry. money going out, which is minus in the bank account becomes a plus in the expense account.

The reason this might sound wrong, is because we think of ourselves as being "in credit", when we have money in the bank.

The reason for this, is that what we see in a bank statement is actually the bank's indebtedness to US. The BANK is IN CREDIT (minus) to us. In our books, the bank balance is a DEBIT. (plus). I hope this makes sense.
 

Minty

AWF VIP
Local time
Today, 22:43
Joined
Jul 26, 2013
Messages
10,371
This is why accountants are a weird bunch... Everything is looked at sideways :p
 

Users who are viewing this thread

Top Bottom