This is a couple questions in one. In the database I am building, users need to be able to select both specific time and date for an event, but there are also occasions when users will not be able to specify an exact time and date.
Current setup: Reporttbl with DateofIncident and TimeofIncident fields (Date/Time data type obviously, I have them seperate for a reason). Several queries pulling that information for use in forms and reports. In the query, I have several fields set up to show day of week, month, quarter, and those are used in a report to count how many times events happen on each (how many events on Monday, in Febraury, in 2nd QTR).
What I am trying to get to, if possible, is allow the users to in put a range of dates and times for incidents. For example, if the exact date is not known, they can enter that it happened between 1 and 4 February, or between 11pm 1 February and 3am 2 February. Then I would need to find a way to count the start of those range groups (11pm and 1 February in the last instance) for statistics purposes.
So my question is, is this possible and how would I set it up? Thank you