greenbird
Design - Paul Litwin and JeremyNYC web site...
Nmaes..
Suggestion...
If this is a serious database (big numbers, taxes, payroll), and you lack experience, then please consider getting a contractor or such for assitance. This will be a learning expereince of which I am sure you will succeed, but playing with money is not fun.
On the other hand, if you have experience, or this will be a casual affair, then go for it.
Start kit
tblGL
GLID - autonumber, primary key (PK)
GLAccount - text, unique
GLDescription - text
+ other info for the account
tblJournalMaster
JournalID - PK
JouranlDesc
PostPeriod -- yyyymm or similar
PostDate -- date
tblJournalDetail
JournalDetailID - PK
JournalID - Foreign key to the master file, FK
GLID - FK to GL table
GLAmount
tblTransaction
TransID - PK
GLID - FK
JournalID - FK
PostPeriod
PostDate
TransAmount
tblGLBalance
GLBalanceID - PK
GLID - FK
PostPeriod
BalanceAmount
I broke a couple of rules for normalization, specifically, in the transaction file, but this is so you can quickly grab posting information.
Writing the code will be another thing.
Richard