Joe8915 Registered User. Local time , 22:41 Joined Sep 9, 2002 Messages 820 Nov 15, 2011 #1 I would like to use a date range in a crosstab query. I have tried to use "IS not null and between [BeginningDate] and [EndingDate]" Any ideas? Thanks
I would like to use a date range in a crosstab query. I have tried to use "IS not null and between [BeginningDate] and [EndingDate]" Any ideas? Thanks
pbaldy Wino Moderator Staff member Local time , 21:41 Joined Aug 30, 2003 Messages 36,254 Nov 15, 2011 #2 If those are on the same field the Is Not Null isn't necessary. Watch out for this, is this is your problem: http://support.microsoft.com/default.aspx?scid=kb;en-us;209778
If those are on the same field the Is Not Null isn't necessary. Watch out for this, is this is your problem: http://support.microsoft.com/default.aspx?scid=kb;en-us;209778
themurph2000 Fat, drunk, and stupid Local time , 23:41 Joined Sep 24, 2007 Messages 181 Nov 16, 2011 #3 pbaldy said: If those are on the same field the Is Not Null isn't necessary. Watch out for this, is this is your problem: http://support.microsoft.com/default.aspx?scid=kb;en-us;209778 Click to expand... I wish I'd remember this little thing. That was the problem I was having today trying to reference text boxes on a form as criteria.
pbaldy said: If those are on the same field the Is Not Null isn't necessary. Watch out for this, is this is your problem: http://support.microsoft.com/default.aspx?scid=kb;en-us;209778 Click to expand... I wish I'd remember this little thing. That was the problem I was having today trying to reference text boxes on a form as criteria.
pbaldy Wino Moderator Staff member Local time , 21:41 Joined Aug 30, 2003 Messages 36,254 Nov 16, 2011 #4 I only remember because it drove me crazy the first time I ran into it. I still have a flat spot on the top of my head.
I only remember because it drove me crazy the first time I ran into it. I still have a flat spot on the top of my head.
Joe8915 Registered User. Local time , 22:41 Joined Sep 9, 2002 Messages 820 Nov 16, 2011 #5 pbaldy said: If those are on the same field the Is Not Null isn't necessary. Watch out for this, is this is your problem: http://support.microsoft.com/default.aspx?scid=kb;en-us;209778 Click to expand... Yes, that was the problem. I made some adjustments, and re thought what I wanted and came up with solution. Thanks so much
pbaldy said: If those are on the same field the Is Not Null isn't necessary. Watch out for this, is this is your problem: http://support.microsoft.com/default.aspx?scid=kb;en-us;209778 Click to expand... Yes, that was the problem. I made some adjustments, and re thought what I wanted and came up with solution. Thanks so much
pbaldy Wino Moderator Staff member Local time , 21:41 Joined Aug 30, 2003 Messages 36,254 Nov 16, 2011 #6 Happy to help.