Dear All I am building a search form in access. I want my users to customize their search. So i have put AND OR and NOT operators in a combo box. AND and OR operators are working fine. But by using NOT operator returns a syntax error. What to do?
Query is as under:
Query is as under:
Code:
select * from dtlsuggestions where (([Title] & ': ' & [Subtitle]) = 'Physics') AND (([AUTHOR] & ', ' & [SUBAUTHOR]) = 'David') OR (Subject = 'Quantum') AND (Publisher = 'IRVIN') NOT (([DDC_NO] & ' ' & [Auth_MARK]) = '658.2')
Comment