Hi
I have a dead simple query. Here it is in SQL View
SELECT Fees.FeeID, Fees.StudentID, Fees.Fees, Fees.DateEntered, Fees.CollectedBy
FROM Fees
WHERE (((Fees.Fees)=0));
Basically i want to see those records where nothing has been entered for a specific period - i.e. value of 0
But my query is not reporting any of them.
If i went into the table it self and physically entered a ZERO - then it WOULD show in my query but that's defeating my object of finding those students who haven't paid
Any idea's?
I have a dead simple query. Here it is in SQL View
SELECT Fees.FeeID, Fees.StudentID, Fees.Fees, Fees.DateEntered, Fees.CollectedBy
FROM Fees
WHERE (((Fees.Fees)=0));
Basically i want to see those records where nothing has been entered for a specific period - i.e. value of 0
But my query is not reporting any of them.
If i went into the table it self and physically entered a ZERO - then it WOULD show in my query but that's defeating my object of finding those students who haven't paid
Any idea's?