I want to discuss possible solutions to my problem. I cannot see how to solve my problem, elegantly.
I have a query that lists a date, shift, and machine. The date and shift are taken from a production table. Those two fields represent a unique listing of all times that product was generated in the department. The machine field lists all machines in the department.
The resulting query is a listing of all machines in the department joined with all dates and times production occured in the department.
I want to take that query and associate a comment next to each individual entry in the query. If I create a table whose only fields are an ID field and a comment field, how do I link the query to the table?
I was thinking along the lines of a make table query, but that doesn't quite do what I want...
I am not familiar with how an append query works...
I am thinking that I have to find some way of generating a unique ID for the query that I can then link to the other table.
Whether that is by using the query to generate a table... or what I am not sure.
If I generate a table I am also concerned about erasing my previous data, or generating duplicate entries.
Could someone steer me in the right direction. Ugggh, I find this very frustrating
I have a query that lists a date, shift, and machine. The date and shift are taken from a production table. Those two fields represent a unique listing of all times that product was generated in the department. The machine field lists all machines in the department.
The resulting query is a listing of all machines in the department joined with all dates and times production occured in the department.
I want to take that query and associate a comment next to each individual entry in the query. If I create a table whose only fields are an ID field and a comment field, how do I link the query to the table?
I was thinking along the lines of a make table query, but that doesn't quite do what I want...
I am not familiar with how an append query works...
I am thinking that I have to find some way of generating a unique ID for the query that I can then link to the other table.
Whether that is by using the query to generate a table... or what I am not sure.
If I generate a table I am also concerned about erasing my previous data, or generating duplicate entries.
Could someone steer me in the right direction. Ugggh, I find this very frustrating