Please help fix the following query so the criteria is applied. Currently, the criteria is not working.
Thanks
Code:
SELECT tbl_Projects.run_type, Count(tbl_Samples.sample_id) AS exp
FROM tbl_Projects INNER JOIN tbl_Samples ON tbl_Projects.run_name = tbl_Samples.run_name
GROUP BY tbl_Projects.run_type
HAVING (((Count(tbl_Samples.sample_id)) Not Like "*HD753*"));
Thanks