I have a very detailed spreadsheet that I use for tracking sales at our different offices by different employees. I think that it will be easier to keep this data in a database but can’t seem to wrap my head around how to set it up. I have never used a database program before and the tables and queries and reports have me puzzled. Here’s how my spreadsheet is set up:
Customer Name, Product Sold, # Units, Date, Price, Location, Employee
There would be about 10 different options for product sold, 9 different locations, and 7 different employees.
I am thinking that I should have separate tables for products, location and employee and they should relate back to a main “sales” table that would have all of the fields listed above. Is that correct or would I be able to get all the information from just making one table with the fields listed above?
The information I would like to be able to pull (and currently track on my spreadsheet) is:
- Number of Units by product
- Total $ sold by product
- Average sale price of each product
- Monthly summary which includes Net Units, Net $ sold, and ASP for the month
Thanks in advance!
J