I have a library DB. The Main table lists all the items by Number. A second table lists the number of copies I have of each item--linked by the number. A third table (currently) lists the items in the series for each Number. E.G., Item #320 has 4 parts. so the third table would have four records that list "1, 2, 3, 4" with the second field of each record being #320. My query that combines all this finds the sum of the records in the series table, so it knows there are 4.
I print labels for each item. The labels say "Item #320, Copy 1, Piece 1 of 4",etc.
I would like to get rid of the "items in series" table. I want to just have a field in the Main table called "Number of pieces in series" and then put 4. THEN I want the labels to still print the same way. (I can't just use the page numbering system because of the number of copies. I can have up to 5 copies of one item and each one has to be labeled with Piece 1 or 4, 2 of 4, etc.)
Is this possible? I can't figure out how to make the query take the number 4 and then know to list 1 through 4.
I print labels for each item. The labels say "Item #320, Copy 1, Piece 1 of 4",etc.
I would like to get rid of the "items in series" table. I want to just have a field in the Main table called "Number of pieces in series" and then put 4. THEN I want the labels to still print the same way. (I can't just use the page numbering system because of the number of copies. I can have up to 5 copies of one item and each one has to be labeled with Piece 1 or 4, 2 of 4, etc.)
Is this possible? I can't figure out how to make the query take the number 4 and then know to list 1 through 4.