Hi All,
I have a new database created and have finished my table structure and relationships and think I have that locked.
I had a snag I hit where I have 3 tables where data entry is performed at different stages of my process. I have incoming commissions checks paid weekly. My process is this:
1. Check comes in and I enter preliminary basic detail on the check into my tblIncomingCommisions table.
2. As the supporting data is reviewed and prepped for processing, individual excel files are compiled to pump into our system and each has a sales and commission value related to a check number entered, so new data goes into my tblProcessingLog table - basically every file prepped creates a line tied back to a check number. I could have multiple files for any given check.
3. The final step when a check is completed is the commission value will get disbursed across 5 distinct territories, so these values get entered into my tblDisbursal table - so five lines (or territories) with a value tied back to a check number.
These tables need to have a relationship and the only common unique value is the check number.
I took all my check numbers and popped them into a table. I was able to establish relationships based on each item below enforcing ref integ and cascade boxes checked:
1. One to One from tblCheck_Number to tblIncomingCommissions table
2. One to Many from tblCheck_Number to tblProcessingLog table
3. One to Many from tblCheck_Number to tblDisbursal table
The hurdle I need to jump now is let's say I receive 10 new commission checks today. I would enter the preliminary check detail into my tblIncomingCommissions table.
I need to find a way through I think an append query to take the new check numbers from tblIncomingCommissions table and have them added to my tblCheck_Number table.
1. Is this possible?
2. Can someone guide me on how to do this?
3. If this is possible, what would the general concept be to ensure the new check numbers are always updating back to the tblCheck_Number table? Do I have to always run the append query or does it automatically run?
Appreciate the feedback and help.
Emma