Ok I have a simple SQL query question.
This will prevent any records that have "Collection successful" from showing up but for some reason its also not showing the NULL values in that same field...
So I dont want to see the "Collection successful" records but i DO want to see the NULLs
What am I missing?
Code:
SELECT tblSMRForm.CancelledReason, tblSMRForm.COI
FROM tblSMRForm
WHERE ((Not (tblSMRForm.CancelledReason)="Collection successful"));
This will prevent any records that have "Collection successful" from showing up but for some reason its also not showing the NULL values in that same field...
So I dont want to see the "Collection successful" records but i DO want to see the NULLs
What am I missing?