Your assumption is exactly right. Below is the query that I am using in the combo box to sort/filter. This particular query is separate actual query but based off of a union query (The SQL is below). With that said where would I put the additional SQL that you stated on your previous post. Hopefully the fact that it is based off of a Union query it wont be a problem.
SELECT UnionQuestionQry.ID, UnionQuestionQry.QuestionNumStr, UnionQuestionQry.Category, UnionQuestionQry.Question, UnionQuestionQry.SubCategory, UnionQuestionQry.RegulatoryField, UnionQuestionQry.RegulatoryNum, UnionQuestionQry.CategoryNumber, UnionQuestionQry.QuestionNumber, UnionQuestionQry.EMOBApplicable, UnionQuestionQry.TypeOfQuestion, UnionQuestionQry.SupplyChainApplicability, UnionQuestionQry.LaboratoryApplicability, UnionQuestionQry.ManufacturingApplicability, UnionQuestionQry.FacilitiesApplicability, UnionQuestionQry.AdministrativeApplicability, UnionQuestionQry.QAApplicability, UnionQuestionQry.ProtectiveServicesApplicability, UnionQuestionQry.UsedOrNotUsed, UnionQuestionQry.[Leading Question], UnionQuestionQry.Reference
FROM UnionQuestionQry
WHERE (((UnionQuestionQry.UsedOrNotUsed)="yes"))
ORDER BY UnionQuestionQry.Category, UnionQuestionQry.QuestionNumber;
The idea would be to use this query to sort/filter data in the ChecklisNumCbo (Sub) in the Findings Form (Sub). Based on the categoryCbo box (Main) the in the AssessmentFrm (Main). The category chosen in CateboryCbo (Main) would show first in the ChecklistNumCbo (sub), then the next sort tier would be "Question number Field" that would be in chronological order for example. See below
Example
2.1 Biological Safety
2.2 Biological Safety
2.3 Biological Safety
2.4 Biological Safety
1.1 Chemical Safety
1.2 Chemical Safety
1.3 Chemical Safety
1.4 Chemical Safety
3.1 Electrical Safety
3.2 Electrical Safety
3.3 Electrical Safety
3.4 Electrical Safety
The idea here being the person is going out to do a biological safety inspection and would most likely always choose the Biological Safety numbers because that is the focus of an inspection. But there is the possibility that a person may detect other safety findings (chemical or electrical in nature) that he/she would have to put into the Findings Table. Therefore you have easy access to the relevant topic but have the option to scroll down for other onsey twoseys if needed. Otherwise I have them all listed but it would entail large scrolling potential because there is probably 300+ options.