When I run the query below, it works fine, until I want to filter on the [name] or [expense] fields, both of which are a combo box. Cannot enter a criteria in either of those fields?
SELECT tbl_LUG.Name, tbl_EXPENSE.exp_type, tbl_EXPENSE.exp_amount, tbl_EXPENSE.exp_date
FROM tbl_LUG
INNER JOIN tbl_EXPENSE ON (tbl_LUG.AUDIT_ID = tbl_EXPENSE.Audit_id) AND (tbl_LUG.LUG_ID = tbl_EXPENSE.LUG_id)
WHERE (((tbl_EXPENSE.exp_date) Between "5/1/2007" And "5/30/2007"));
SELECT tbl_LUG.Name, tbl_EXPENSE.exp_type, tbl_EXPENSE.exp_amount, tbl_EXPENSE.exp_date
FROM tbl_LUG
INNER JOIN tbl_EXPENSE ON (tbl_LUG.AUDIT_ID = tbl_EXPENSE.Audit_id) AND (tbl_LUG.LUG_ID = tbl_EXPENSE.LUG_id)
WHERE (((tbl_EXPENSE.exp_date) Between "5/1/2007" And "5/30/2007"));