I'm fairly new to access and I need some insight on the way I'm setting up two tables. I am in the business of tracking equipment procurements. I have one table that has the main unit, quantity, make/model information along with some other purchasing details. We have unique numbers associated with every main unit. So say we want to order a T.V. that number is and always will be 12345. Well, now we are required to track accessories individually and I am thinking it would be best to have a separate Accessories table. The problem I'm running into though is since there can be different numbers of accessories and different quantities it's throwing my numbers off. When I run a query or report it shows multiple records for the main unit.
I want the query to list the rows separately like this.
ID Desc Qty Type
12345 TV 3 Main Unit
12345 Cable 3 Accessory
12345 Mount 2 Accessory
Instead it lists the first line two times so it looks like there is a total of 6 units.
12345 TV 3 Accessory Cable 3
12345 TV 3 Accessory Mount 2
It might be a simple fix and I’m just having a brain fart or maybe I should put the accessories in the main table, I'm not sure. Any advice/insight would be greatly appreciated.