Hello everyone!
I'm having the next issue described and I am sure somebody here could provide me support on this matter.
Into my database I have a table named "Main", In which could be found test results and it has the following fields: ID, Model, Batchnumber, TestType, Result, TestDate.
The issue I get is that on the table "tblMain" the serial number is recorded three times because are different test performed (test1, test2 and test3). It comes directly from the testequipment automatically.
For that reason I made a query named "QyFilter" in order to find the duplicated serial numbers (Batchnumbers) and observe the quantity of "real" products tested. This query has the following fields: Model, Batchnumber and TestDate.
Now I want to perform is send this info from the query "QyFilter" to a new table named "tblTestResults" in which can be found more than the three fields defined in the query "QyFilter", I attemped it in many ways: MakeTable, Append and Update but I am not suceeded.
When I made "MakeTable query" everytime was creating a new table.... and not updating the current data to the new table...
When I made "Append" everytime I performed the query the data were pasted again to the old ones...
When I made "Update" the other records in the fields are deleted.
I want to achieve is...
When the table "tblMain" will be updated automatically will be updated the query "QyFilter" and also the table "tblResults" (only the fields involved)
I hope somebody could help on this!!
Thanks in advance for the support!