I'm trying to create a query that will kick out any records that have the word Closed in one of my fields.
SELECT Company_T.*
FROM Company_T
WHERE ((([Company_T].[COMPANY_CLIENT_STATUS]) NOT LIKE "*" & "CLOSED" & "*"))
ORDER BY [Company_Name];
This query somewhat works. It does not display any record with the word Closed in it, but it also does not dispaly any records that have a blank entry for this field. It is only returning records that have something typed in this field.
Am I doing something wrong or do I need to add something to this query?
Thanks!
SELECT Company_T.*
FROM Company_T
WHERE ((([Company_T].[COMPANY_CLIENT_STATUS]) NOT LIKE "*" & "CLOSED" & "*"))
ORDER BY [Company_Name];
This query somewhat works. It does not display any record with the word Closed in it, but it also does not dispaly any records that have a blank entry for this field. It is only returning records that have something typed in this field.
Am I doing something wrong or do I need to add something to this query?
Thanks!