eckert1961
Registered User.
- Local time
- Yesterday, 18:26
- Joined
- Oct 25, 2004
- Messages
- 90
Hello,
I'm not sure if a query or code is the best method to accomplish what I need. I have an Access 2003 database with a main form, Members. On this form I have two checkboxes labeled Ready and Active. I also have a combobox, GradeAttempting.
Currently the control source for the combobox on my Members form is a field in my Members table, GradeAttempting. For the row source I'm using the following query.
The table GradeTypes has a field, SortField,
What I want to do is for members where Active=Yes and Ready=Yes I want to run possibly an Update query or code that will select the next GradeAtempting according to the SortField and then clear both the Active and Ready checkboxes.
Could someone recommend what the best approach would be? Any assistance would be greatly appreciated.
Regards,
Chris
I'm not sure if a query or code is the best method to accomplish what I need. I have an Access 2003 database with a main form, Members. On this form I have two checkboxes labeled Ready and Active. I also have a combobox, GradeAttempting.
Currently the control source for the combobox on my Members form is a field in my Members table, GradeAttempting. For the row source I'm using the following query.
Code:
SELECT GradeTypes.*, GradeTypes.GradeTypeID, GradeTypes.GradeType FROM
GradeTypes ORDER BY GradeTypes.GradeTypeID, GradeTypes.GradeType DESC;
The table GradeTypes has a field, SortField,
What I want to do is for members where Active=Yes and Ready=Yes I want to run possibly an Update query or code that will select the next GradeAtempting according to the SortField and then clear both the Active and Ready checkboxes.
Could someone recommend what the best approach would be? Any assistance would be greatly appreciated.
Regards,
Chris