I am trying to change the database I've built a little bit, so it would be easier to add more unit's if we need to. Currently the table design is set up as below
Part Number--|--Part Name--|--Unit1ECD--|--Unit2ECD--|--Unit3ECD--|--etc.
----Part A-------|-----Name A---|----9/9/99-----|----9/9/99-----|----9/9/99------|--etc.
----Part B-------|-----Name B---|----9/9/99-----|----9/9/99-----|----9/9/99------|--etc.
----Part C-------|-----Name C---|----9/9/99-----|----9/9/99-----|----9/9/99------|--etc.
With it set up like this I can set up a form that let's people go in, and status all the unit's at one time, however if i have to add in more unit's, I have to go in, and add 5 to 6 columns for each unit.
I would like to set it up like the example below, but still be able to set up a form that looks like the format above
Part Number--|--Part Name--|--ECD--|--Unit--|--ect.
----Part A-------|-----Name A---| 9/9/99 |----1----|--etc.
----Part A-------|-----Name A---| 9/9/99 |----2----|--etc.
----Part A-------|-----Name A---| 9/9/99 |----3----|--etc.
----Part B-------|-----Name B---| 9/9/99 |----1----|--etc.
----Part B-------|-----Name B---| 9/9/99 |----2----|--etc.
----Part B-------|-----Name B---| 9/9/99 |----3----|--etc.
----Part C-------|-----Name C---| 9/9/99 |----1----|--etc.
----Part C-------|-----Name C---| 9/9/99 |----2----|--etc.
----Part C-------|-----Name C---| 9/9/99 |----3----|--etc.
I've tried to set up some crosstab query's, but you can't update the data in a crosstab query. Is there an SQL query or something of that nature that I would be able to create that would allow updates?
If this doesn't make sense, just let me know :-P
Part Number--|--Part Name--|--Unit1ECD--|--Unit2ECD--|--Unit3ECD--|--etc.
----Part A-------|-----Name A---|----9/9/99-----|----9/9/99-----|----9/9/99------|--etc.
----Part B-------|-----Name B---|----9/9/99-----|----9/9/99-----|----9/9/99------|--etc.
----Part C-------|-----Name C---|----9/9/99-----|----9/9/99-----|----9/9/99------|--etc.
With it set up like this I can set up a form that let's people go in, and status all the unit's at one time, however if i have to add in more unit's, I have to go in, and add 5 to 6 columns for each unit.
I would like to set it up like the example below, but still be able to set up a form that looks like the format above
Part Number--|--Part Name--|--ECD--|--Unit--|--ect.
----Part A-------|-----Name A---| 9/9/99 |----1----|--etc.
----Part A-------|-----Name A---| 9/9/99 |----2----|--etc.
----Part A-------|-----Name A---| 9/9/99 |----3----|--etc.
----Part B-------|-----Name B---| 9/9/99 |----1----|--etc.
----Part B-------|-----Name B---| 9/9/99 |----2----|--etc.
----Part B-------|-----Name B---| 9/9/99 |----3----|--etc.
----Part C-------|-----Name C---| 9/9/99 |----1----|--etc.
----Part C-------|-----Name C---| 9/9/99 |----2----|--etc.
----Part C-------|-----Name C---| 9/9/99 |----3----|--etc.
I've tried to set up some crosstab query's, but you can't update the data in a crosstab query. Is there an SQL query or something of that nature that I would be able to create that would allow updates?
If this doesn't make sense, just let me know :-P
Comment