mustangcoupe
Technical User
I have a table called lu_method that has 3 fields, ID(autonumber), method, Type(number bound to autonumber of lu_test_types)
I am filtering a combo box linked to this by
but if Forms]![job_form]![type].value = combined(ID# 6) then I dont want it filtered
how would I do this?
I am filtering a combo box linked to this by
Code:
SELECT [lu_method].[methodID], [lu_method].[testmethod], [lu_method].[Type] FROM lu_method WHERE ((([lu_method].[Type])=[Forms]![job_form]![type].value)) ORDER BY [lu_method].[testmethod];
but if Forms]![job_form]![type].value = combined(ID# 6) then I dont want it filtered
how would I do this?