
Originally Posted by
June7
So you want to have a form where you enter a word in a textbox (or select from a combobox dropdown list) that will be used to compare with the keyword fields and return records where there is a match? Build a query that uses the value as filter criteria. Something like:
SELECT * FROM tablename WHERE keyword1Txt = Forms!formname.comboboxname OR keyword2Txt = Forms!formname.comboboxname OR keyword3Txt = Forms!formname.comboboxname OR keyword4Txt = Forms!formname.comboboxname
Use that query as the RecordSource for a report.
No checkboxes needed.