T tim1234 Registered User. Local time Today, 16:47 Joined Nov 19, 2002 Messages 38 Mar 15, 2005 #1 I have a query that I want to show only records that do not have a value in the DateClosed field. I'm not sure which expression I need to use. Any help is greatly appreciated.
I have a query that I want to show only records that do not have a value in the DateClosed field. I'm not sure which expression I need to use. Any help is greatly appreciated.
sfreeman@co.mer Sam_F Local time Today, 14:47 Joined Aug 2, 2004 Messages 272 Mar 15, 2005 #2 Something like this? SELECT tblDates.Date FROM tblDates WHERE (((tblDates.Date) Is Not Null)); HTH
R raskew AWF VIP Local time Today, 16:47 Joined Jun 2, 2001 Messages 2,734 Mar 16, 2005 #3 Hi- To return just those records where there's not a date, you'd use the reverse of the previous response, e.g. SELECT tblHolidates.theDate, tblHolidates.Holiday FROM tblHolidates WHERE (((tblHolidates.theDate) Is Null)); HTH - Bob
Hi- To return just those records where there's not a date, you'd use the reverse of the previous response, e.g. SELECT tblHolidates.theDate, tblHolidates.Holiday FROM tblHolidates WHERE (((tblHolidates.theDate) Is Null)); HTH - Bob
T tim1234 Registered User. Local time Today, 16:47 Joined Nov 19, 2002 Messages 38 Mar 16, 2005 #4 Where to put the code. Do I put that in the expression builder or in a module? Kinda new at this. Thanks for your help.
Where to put the code. Do I put that in the expression builder or in a module? Kinda new at this. Thanks for your help.
U Ukraine82 Registered User. Local time Today, 14:47 Joined Jun 14, 2004 Messages 346 Mar 16, 2005 #5 What raskew gave you was a query sql. All you have to do is make a query with selected fields and for DateClosed field criteria type in is null. hth, Michael
What raskew gave you was a query sql. All you have to do is make a query with selected fields and for DateClosed field criteria type in is null. hth, Michael
T tim1234 Registered User. Local time Today, 16:47 Joined Nov 19, 2002 Messages 38 Mar 16, 2005 #6 thanks!!!! thanks for the help guys!!!