I'm trying to figure out how I can get access to output a separate row for each number in a count of records. i.e., I want a list of all cables to in a project so I can make labels.
So after a sum query I find a box has 3 of cable type A and 2 cables of type B.
So the query shows:
Now I want to make a cable list, so I want a query based on the above to spit out:
It doesn't have to autonumber, that could be done later in Excel, but it would extra super awesome if it did, especially if it number by cable type.
Any ideas?
Thanks in advance
Joe
So after a sum query I find a box has 3 of cable type A and 2 cables of type B.
So the query shows:
Code:
WIRETYPE BOX COUNT
A 1 3
B 2 2
Code:
WIRETYPE BOX LABEL
A 1 A-1
A 1 A-2
A 1 A-3
B 2 B-1
B 2 B-2
Any ideas?
Thanks in advance
Joe