Hey all, not sure how to fully explain this. I am currently tracking loans with an excel spreadsheet, client info(first name, last name), loan info (orig amount, interest rate, payment), etc..
It is getting a little too much to maintain. I am looking into converting it to a database but can't seem to get my head around the setting up the structure.
The loans are amortized over different periods of months (60,120,360 etc) I need to run fairly simple reports - interest rates below 8%, loan balances, payments above $1,000.00, loan with terms shorter than 60 months etc, loans paid 25% of original amount etc...
Currently in the spreadsheet each customer has their own worksheet, so I will have to create tables:
Customers, Accounts, Loans, Transactions, etc..
One area I am struggling with is the separation of entities, trying to remember the rule KISS (keep it short and simple), should the loan table contain all the information, or should interest rates, payments, etc.. be in separate tables? I have looked at a database used in the automotive industry and had them separated? (due dates, int rate, loan amount, etc., not sure how that worked?
Another area that I am getting stuck is the amortization which is a calculation, always thought you shouldn't store calculated fields. Can or should that be calculated and stored into a table for each customer? Currently I amortize the loan and insert the table into the spreadsheet and manually check off payments made to date.
Any direction or ideas would be appreciated -