View Single Post
  #3  
Old May 15th, 2010, 02:24 PM posted to microsoft.public.access.queries
116
external usenet poster
 
Posts: 48
Default Date Question...

Thanks Karl for the quick response. I can somewhat see whats going on here.
I do have it workig. I may have explained incorrectly.

We having company meeting on the first Weds of each month. So I trying to
get the posts between these 2 dates. When the next first Weds comes up, the
old posts will not display, so the posts beyond that Weds drop off the
results list.

David

"KARL DEWEY" wrote:

Create a table CountNumber with field CountNUM containing numbers 0 (zero)
through 6.

SELECT YourTable.*
FROM CountNumber, YourTable
WHERE ((([SomeDate]) Between (Date()-Day(Date())+1)+[CountNUM] And
(Date()-Day(Date())+1)+[CountNUM]-6) AND
((DatePart("w",(Date()-Day(Date())+1)+[CountNUM]))=4));

--
Build a little, test a little.


"116" wrote:

I am trying to create a query to give me the results from the first weds of
each month back to the following day after weds. Having trouble formatting
the Date function.

Any help would be greatly appriciated.

Thanks
David