I've got the following query as the data source for a form:
(I do not want any records where the value of [Rep Agency ] is null to be displayed)...
Code:
SELECT tblManufacturers.*
FROM tblManufacturers
WHERE (((tblManufacturers.[Rep Agency]) Is Not Null))
ORDER BY tblManufacturers.[Rep Agency], tblManufacturers.ManufacturerName;
It seems to me that I've got the query correct. I've even added a simple text box to the form with the data source:
Code:
=Nz([rep Agency],"null")
yet still the records are included; that text box blatantly returns "null" values.
perplexed, yet with thanks in advance..
Mark