I have been trying to tidy up the design of my database by eliminating repeating data. As such, instead of having a single table I now have several much smaller tables.
The problem is that if I do this the only way I can create a form for data entry is by creating a form and having a subform for each of the smaller tables. I was going to join all the smaller tables using a query, and then base the form on the query until I remembered that I can't update recordset's on a query. So this leaves me with the option of subforms, if I follow this path is there anyway that I can format the subform so that it does not look like a subform? (no border's around the subform etc) but just to look like a bunch of fields on a single form?
Or should I stick with my larger table and base the form on this? If I stick with the larger table I then get a problem with a query that I want to use further down the road (this is why I looked at breaking up the tables) If I use the large table I want the query to move data into a new table, and then to create reports on this new table, however I get stuck when trying to move data, I have in my table:
Supplier 1 - Item 1
Supplier 2 - Item 2
Supplier 3 - Item 3
Supplier 1 - Item 4
Supplier 1 - Item 5
But I want to move this into the query as:
Supplier 1 - Item 1, Item 4 and Item 5
Supplier 2 - Item 2
Supplier 3 - Item 3
So that I only need to produce 3 reports instead of 5. Any help on the issues above is greatly appreciated, at the moment I am not sure which way to go and get stuck either way.
The problem is that if I do this the only way I can create a form for data entry is by creating a form and having a subform for each of the smaller tables. I was going to join all the smaller tables using a query, and then base the form on the query until I remembered that I can't update recordset's on a query. So this leaves me with the option of subforms, if I follow this path is there anyway that I can format the subform so that it does not look like a subform? (no border's around the subform etc) but just to look like a bunch of fields on a single form?
Or should I stick with my larger table and base the form on this? If I stick with the larger table I then get a problem with a query that I want to use further down the road (this is why I looked at breaking up the tables) If I use the large table I want the query to move data into a new table, and then to create reports on this new table, however I get stuck when trying to move data, I have in my table:
Supplier 1 - Item 1
Supplier 2 - Item 2
Supplier 3 - Item 3
Supplier 1 - Item 4
Supplier 1 - Item 5
But I want to move this into the query as:
Supplier 1 - Item 1, Item 4 and Item 5
Supplier 2 - Item 2
Supplier 3 - Item 3
So that I only need to produce 3 reports instead of 5. Any help on the issues above is greatly appreciated, at the moment I am not sure which way to go and get stuck either way.