Eliminating blanks from a query

E

Eirc

How do I generate a query that if the end date is Null
then I do not want that record to show???

Here is a example of a query:

SELECT Plant.Name, User.Name, AnalysisTestGroup.StartDate,
AnalysisTestGroup.EndDate, AnalysisTestGroup.ID
FROM User INNER JOIN (Plant RIGHT JOIN AnalysisTestGroup
ON Plant.Code = AnalysisTestGroup.PlantCode) ON User.ID =
AnalysisTestGroup.TestPerson
WHERE (((AnalysisTestGroup.StartDate)>[Please Enter the
Start Date]))
ORDER BY AnalysisTestGroup.StartDate;

Any ideas?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top