Ok,
I have a table that contains event information - 'tblEvents'. If the user
believes the event to be significant enough, they can send an alert and
that
information is stored in a further table - tblAlert - is linked to the
event.
Each alert requires a number of people to respond to it depending on the
department that alert is from. For these respondents I have created
another
table - tblAlertReply - which contains the information on the people who
need
to reply including a yes/no field - named 'replied' - which the user
checks
when a reply is received. The respondents are the same for each alert and
department. For example I have three types of alert and each type of alert
has a different set of respondents. So Alert Type 1 may have 4 people to
respond, alert type 2 may have 6 people and so on but they are the same
people for each alert. The tables are related in the following way:
tblEvents ---> tblAlerts (1toM) tblAlerts ---> tblAlertReply (1toM)
I want to do two things:
Create a form and sub-form which shows the alert information and the
replies. I have created these but the respondents change depending on the
record. For example Alert 1 has the 4 necessary respondents (in the sub
form)
but as soon as I move on to Alert 2, the sub form becomes blank and I have
to
type in the respondents every time I create a new alert. I want to be able
to
keep the respondents in the sub form and when a new alert occurs I will
need
the yes/no field clearing so I can say whether that particular respondent
has
replied to that particular alert.
Secondly I want to create a report which runs from a query which will show
only the people who have not responded to the alert.
Sorry if this is very complicated, I think I have explained it at a much
more complicated level than it is.
Create a form which
rjw24 said:
I have a table (tblAlert) which has a large amount of yes/no fields as an
answer to whether different people have responded to an alert that has
been
sent out. The table also includes a review date. I want to create a query
for
the basis of a report which requires two things:
1. Only become active once the review date has passed - which I have done
by
placing the following in the criteria box - Now>[Review Date].
2. I only want to include fields that have a "No" answer.
Thank you