Tracking Program Attendance

C

Corae

Hi,
I'm working on a database to track attendance of persons who were part of a
homeless shelter program that's every night. We'd like to be able to pull
reports for individual persons to see which nights they came, to pull
averages of the number of people who came on particular weeks, etc. Can
someone please help provide step-by-step instructions? Thanks!
 
L

Larry Linson

Corae said:
I'm working on a database to track attendance of persons
who were part of a homeless shelter program that's every
night. We'd like to be able to pull reports for individual
persons to see which nights they came, to pull averages
of the number of people who came on particular weeks,
etc. Can someone please help provide step-by-step
instructions? Thanks!

With no more information than you provided, no, no one could *possibly*
provide you with step by step instructions, even if this were the venue to
do so. But, newsgroups are not an appropriate venue for training or
tutorials, but for providing specific answers to specific questions. For
other good suggestions on effective use of newsgroups, see the FAQ at
http://www.mvps.org/access/netiquette.htm.

You need to start with a self-study book (Microsoft Access Step-by-Step from
Microsoft Press is a good one for the novice user; and Microsoft Access
Inside-Out, also from MS Press, is another that delves deeper into Access);
or visit Office Online at http://office.microsoft.com and follow the links
to training.

Larry Linson
Microsoft Office Access MVP
 
E

Evi

You're going to wonder why I'm writing about planning a database when you
just want the results. But without the planning, the whole thing will fail
very quickly and you will have to re-do any results which you get.

Here is a possible structure to get you started, depending on your needs.
You will think of other fields which you wish to add and possibly other
tables. The thing that takes the most thought is to decide which field
belongs to which table and when you need a seperate table for something.

TblPeople
an Autonumber primary key field PersId,
Firstnames,
Surname
DateOfBirth
You'll certainly need the above and may also need to consider in the table:
AliasName
Died (A yes/no field)
IDMarks (identifying marks)
SocSecNumber (social security number)
date of birth, some kind of way you identify them in the shelter possibly if
they have some kind of member number)
and any fields which apply only to that person and are not effected by
whether they attend or not.


TblAttendance
Autonumber Primary Key Field AttendID
StartDate (Date) (keep date and time separate to make it easier to filter by
date)
StartTime (Time field)
EndDate (date)
EndTime (time)
PersID (A number field)
AttendNotes

TblIncident
(to record any incidents when the person attended the shelter)
IncId (PrimaryKey)
AttendID (note that you don't need the PersID because you can get that from
the AttendID)
IncidentDateTime (a date time field)
IncidentNotes


You may also want (depending on your requirements.
TblNextOfKin
KinID
PersID
KinFirstName
KinSurname
KinAddress

Normally you would have a seperate table for the Kin but they are irrelevant
as individuals and only exist for you when they are connected to the person.
I've got a seperate table because you may want to add several next of kins

Note that, apart from the Foreign Key fields (ie personID in TblAttendance)
I am avoiding giving fields in different tables the same name so I have
IncidentNotes and AttendNotes.

Don't be tempted to shortcut your fields (eg don't put FirstName and Surname
in the same field) - you will almost certainly have to spend time seperating
them at a future date.

In the relationships window, link PersID from TblPeople to PersID in
TblAttendance & in TblNextOfKin

This gives you the structure.

To input your data, make a form based on TblPeople. Make its subform
TblNextOfKin

Make a Form based on TblAttendance. Use a combo box based on TblPeople to
let you add a person to the form.

When you've created this, we can help you to create queries to find out the
info you require.

Rather than asking for a whole step-by-step guide which involves a great
deal of typing (especially as you may well know the answers to 90% of what
the writer has spent time recording), you could ask a specific question

Here's an example of questions which will get answers:

My database tracks Attendance of People at a shelter. It has these tables
(list tables and explain any ambiguous sounding field names and how the
tables are linked).

I've made a query based on TblAttendance. How do I filter it to show all
those who attended between 2 dates?

or

I've created a query called QryAttendance based on my TblAttendance.
I want a button in my People Form so that when I press it, the query opens
showing all the times that this person attended the shelter. How do I do
this?

Here are some other tips for getting quick replies:
Try to ask 1 question at a time per email. Most people have the time to
tackle one question but few have the time to get stuck into a shopping list
Avoid using jargon to sound knowledgable unless you are prepared for the
respondant to answer in jargon too.
If nobody replies within a few days, don't give up, try asking again,
including the text from your original question.


Evi
 
U

usersfirst

You're going to wonder why I'm writing about planning a database when you
just want the results. But without the planning, the whole thing will fail
very quickly and you will have to re-do any results which you get.

Here is a possible structure to get you started, depending on your needs.
You will think of other fields which you wish to add and possibly other
tables. The thing that takes the most thought is to decide which field
belongs to which table and when you need a seperate table for something.

TblPeople
an Autonumber primary key field PersId,
Firstnames,
Surname
DateOfBirth
You'll certainly need the above and may also need to consider in the table:
AliasName
Died (A yes/no field)
IDMarks (identifying marks)
SocSecNumber (social security number)
date of birth, some kind of way you identify them in the shelter possibly if
they have some kind of member number)
and any fields which apply only to that person and are not effected by
whether they attend or not.

TblAttendance
Autonumber Primary Key Field AttendID
StartDate (Date) (keep date and time separate to make it easier to filter by
date)
StartTime (Time field)
EndDate (date)
EndTime (time)
PersID (A number field)
AttendNotes

TblIncident
(to record any incidents when the person attended the shelter)
IncId (PrimaryKey)
AttendID (note that you don't need the PersID because you can get that from
the AttendID)
IncidentDateTime (a date time field)
IncidentNotes

You may also want (depending on your requirements.
TblNextOfKin
KinID
PersID
KinFirstName
KinSurname
KinAddress

Normally you would have a seperate table for the Kin but they are irrelevant
as individuals and only exist for you when they are connected to the person.
I've got a seperate table because you may want to add several next of kins

Note that, apart from the Foreign Key fields (ie personID in TblAttendance)
I am avoiding giving fields in different tables the same name so I have
IncidentNotes and AttendNotes.

Don't be tempted to shortcut your fields (eg don't put FirstName and Surname
in the same field) - you will almost certainly have to spend time seperating
them at a future date.

In the relationships window, link PersID from TblPeople to PersID in
TblAttendance & in TblNextOfKin

This gives you the structure.

To input your data, make a form based on TblPeople. Make its subform
TblNextOfKin

Make a Form based on TblAttendance. Use a combo box based on TblPeople to
let you add a person to the form.

When you've created this, we can help you to create queries to find out the
info you require.

Rather than asking for a whole step-by-step guide which involves a great
deal of typing (especially as you may well know the answers to 90% of what
the writer has spent time recording), you could ask a specific question

Here's an example of questions which will get answers:

My database tracks Attendance of People at a shelter. It has these tables
(list tables and explain any ambiguous sounding field names and how the
tables are linked).

I've made a query based on TblAttendance. How do I filter it to show all
those who attended between 2 dates?

or

I've created a query called QryAttendance based on my TblAttendance.
I want a button in my People Form so that when I press it, the query opens
showing all the times that this person attended the shelter. How do I do
this?

Here are some other tips for getting quick replies:
Try to ask 1 question at a time per email. Most people have the time to
tackle one question but few have the time to get stuck into a shopping list
Avoid using jargon to sound knowledgable unless you are prepared for the
respondant to answer in jargon too.
If nobody replies within a few days, don't give up, try asking again,
including the text from your original question.

Evi

Hi Corae,

I'd be willing to do some pro-bono work for you, it's definitely a
good cause. Shoot me an email with details about your org to:

(e-mail address removed)

Cheers,
Brandon
http://www.opengatesw.net
 
A

A Nother

Corae said:
Hi,
I'm working on a database to track attendance of persons who were part of
a
homeless shelter program that's every night. We'd like to be able to pull
reports for individual persons to see which nights they came, to pull
averages of the number of people who came on particular weeks, etc. Can
someone please help provide step-by-step instructions? Thanks!

http://office.microsoft.com/en-us/templates/TC012253551033.aspx?pid=CT101428361033

might be a place to start.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top