For clarity, you have a form recordsource of 3200 records.
You have 2 comboboxes,
1 for StatusName and 1 for Class.
What do you expect the user to do?
Select a Class or Select a StatusName?
How are the tables related?Are there X statuses for a given Class?
'general approach
I would think you would have the rowsource for each combo to be the corresponding table.
Then, after the combos have been selected,
something like the following --untested--
Code:
Me.recordsource = "select * from table " _
& " Where statusname = '" & me.cboStatus & "' AND class = '" & me.cboClass &"' " 'use selected values
Me.Requery 'requery to get/use the latest recordsource
But I may be misreading your intent.