after PHV suggestion I was looking at ranking queries and Golum you are correct that would not be very helpful,
the engineering team has a table where they enter all their data the table is called tbl1
in this "tbl1" they have the following fields
item
material
insert
operation
qty
tool
tool_description
sometimes the operation could be different for each item.
what I am looking to do is convert the tbl1 into a query where it shows each item, material, insert and operation in a horizontal form instead of a vertical form
so for example if I have this in my "tbl1"
Code:
item material insert operation qty tool tool_description
aaa ABS none tap 1 8-32 H7 4FL
aaa PHN steel drill 1 6-32 Carbide tip
aaa ABS none retap 1 #28 H3 4FL
bbb ABS none retap 1 #28 H3 4FL
bbb PHN steel drill 1 6-32 Carbide tip
ccc PHN steel drill 1 6-32 Carbide tip
my query would have operation1, operation2, operation3, qty1, qty2,qty3, tool1, tool2, tool3, tool_description1, tool_description2 and tool_description3 for
part "aaa" and so on for the rest of the parts.
So what I was thinking is if I can number the parts in my table then I could do a query with just the parts and say if item = 1 then qty1 or something like that.
Hence the item numbering. not sure if I am in the right path with this any advice is much appreciated.
Thanks!!