bluekestrel,
Thanks for responding so quickly! From what I can see, I have done all of the steps you outlined. I have 2 tables:
Plan Types (Category)-this table has one field and 2 records, DB and HW; and Plan Events (Sub Category)-this table has 2 fields, one of which is Plan Types, and 38 records. Of the 38, 19 are DB Plan Events and 19 are HW Plan Events. In the query, I linked the two tables using the plan types. This is what I have in the criteria section under "Plan Types":
[Forms]![Case Form]![cmbPLAN TYPE]
Here is what I have in my AfterUpdate event for Plan Type:
Private Sub cmbPLAN_TYPE_AfterUpdate()
Me.cmbEVENT.Requery
End Sub
This still prompts me to enter a parameter. Can you see if I am doing something incorrectly?