A Date issue

MichHart

New Member
Joined
Dec 4, 2009
Messages
3
Hi guys, i was hoping you could help me with another "challenge" i have in my db.

I have a table detailing events. Each event has a start and end date field.

Id love to be able to generate a query for a report, which again is controlled by a start and end date, which would break down every day for the search dates showing the events....

Hard to describe really, something like this....

From my event table -

Start______End_______Event
01/01/2011 05/01/2011 I am an Event



if if my query is between 01/01/2011 and 07/01/2011 the result would show like this -

Date______Event
01/01/2011 I am an Event
02/01/2011 I am an Event
03/01/2011 I am an Event
04/01/2011 I am an Event
05/01/2011 I am an Event
06/01/2011 -
07/01/2011 -

Is this possible to do in access? I know i can do this in excel.
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Assuming you know how to write a select query with criteria BETWEEN (Date1 and Date2) or (>= Date1 AND < (Date2 + 1)), you can easily write a query that uses parameters based on user input. But you haven't actually defined how an event qualifies. It seems you have a choice of:
  • starting before the date range, and ending within the date range (partial overlap "rightwards")
  • starting and ending within the date range (complete overlap)
  • starting within the date range but not ending in the date range (partial overlap "leftwards")

Or, of course, counting any of these as a "hit".
 
Upvote 0

Forum statistics

Threads
1,214,394
Messages
6,119,263
Members
448,881
Latest member
Faxgirl

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top