> Post the full SQL statement for your query.
>
[quoted text clipped - 47 lines]
> >> > I can't understand why this should be happening. Any ideas gratefully
> >> > received.
So, the dates are right, but 2 records are being included where all 3 of the
fields (IntNow, IntFut, and IntRec) are blank?
Let's ask Access to tell us whether those fields are in fact Null.
Try the query below, and see if the last 3 columns all say True on the 2
problem records:
SELECT t_all_reports.[Report ID],
t_all_reports.[Action Points],
t_all_reports.[IntNow],
t_all_reports.[IntFut],
t_all_reports.[IntRec],
t_all_reports.[Date_ent],
t_all_reports.Comments,
(IntNow Is Null) AS IntNowIsNull,
(IntFut Is Null) AS IntFutIsNull,
(IntRec Is Null) AS IntRecIsNull
FROM t_all_reports
WHERE (([Date_ent] Between
CDate(DateSerial(Year(Date()),Month(Date())-1,1))
And CDate(DateSerial(Year(Date()),Month(Date()),0)))
AND NOT ((IntNow Is Null) AND (IntFut Is Null) AND (IntRec Is Null)));

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> SELECT t_all_reports.[Report ID], t_all_reports.[Action Points],
> t_all_reports.[IntNow], t_all_reports.[IntFut], t_all_reports.[IntRec],
[quoted text clipped - 58 lines]
>> >> > gratefully
>> >> > received.
klr - 20 Jul 2006 14:25 GMT
There WAS data in the record. The User had placed a carriage return at
the start of the paragraph, therefore the query result looked as though
the fields were empty. Sorry to have wasted your time, however it was
useful to use SQL code as that is something I have never done before.
Thanks again.
> So, the dates are right, but 2 records are being included where all 3 of the
> fields (IntNow, IntFut, and IntRec) are blank?
[quoted text clipped - 86 lines]
> >> >> > gratefully
> >> >> > received.