I'm working on an Access database for an accounting department that will keep track of historical store data for about 20 locations. I have created a table for each of the line items that will go on the report such as sales revenue for each product, expenses, etc. Each location already has a unique store code that is used by the accounting department so I have been setting the primary key to be the store code for the locations so the tables are set up like this:
Month1 Month2...
StoreCode Location1
StoreCode Location2
etc..
The purpose of the report is to set up a comparison between stores. because all the tables are based on location and store code, they all have the same primary key. I'm looking into setting up relationships with tables to help with queries and updates, but I'm not sure how the relationships should work in this case. Would it be better to create new primary keys for each table to try to set up 1 to many realtionships? Or should I use one to one relationships because all the data is based on the location and the store code? Please help!
Thanks