I have a form that operators fill out every time they finish a sample for a particular batch. We do test multiple samples for each batch but the number of samples vary depending on certain criteria.
In the form, I have placed a sub form of the table that the data in which hold this information so its being directly entered in. The operators are able to put all the samples connected to that batch right into the sub form. Naturally, when you look at the table all the data is there and the batch number connected to all the samples.
The problem I am running into is every time I want to cycle through the data, on the form, I need to click as many times as there are samples to get to a different batch number.
Example:
Batch Number: 206 has 7 samples
I need to click back 7 times to see data for btach 205. How can I have form move to the next record based on the batch number?
By the way, I programmed my own buttons so I use the DoCmd.RunCmd acCmdGoToNextRe cord instead of the default buttons.
In the form, I have placed a sub form of the table that the data in which hold this information so its being directly entered in. The operators are able to put all the samples connected to that batch right into the sub form. Naturally, when you look at the table all the data is there and the batch number connected to all the samples.
The problem I am running into is every time I want to cycle through the data, on the form, I need to click as many times as there are samples to get to a different batch number.
Example:
Batch Number: 206 has 7 samples
I need to click back 7 times to see data for btach 205. How can I have form move to the next record based on the batch number?
By the way, I programmed my own buttons so I use the DoCmd.RunCmd acCmdGoToNextRe cord instead of the default buttons.
Comment