Connecting Tech Pros Worldwide Forums | Help | Site Map

Tracking Daily Attendance in MS Access

SKBodner@gmail.com
Guest
 
Posts: n/a
#1: May 10 '06
Hello,

I'm stumped and I'm hoping someone could help me figure out the best
way to track daily attendance for the next 6-4 months.

I have a list of 80 or so participants who should be attended training
on a daily basis and am tracking if they attended, have an unexcused
absence, or are absence with an excuse. At the end of the month, I plan
to print out reports on those who have missed more than one day with an
unexcused absence. My query will show the number of days missed over
the number of days training has been provided to give me a percentage
of days missed.

I understand that over the next 6-9 months, there are a number of days!
Should I just create a sheet with the participants ID and Name and
start the next column heading as May 1, then May 2...all the way to end
of the training program? Should I have one table for May, another for
June, or put all the dates in one table? Is there a better way to do
this?

Any suggestions would be appreciated.

Sandy :o)


Bob Quintal
Guest
 
Posts: n/a
#2: May 10 '06

re: Tracking Daily Attendance in MS Access


"SKBodner@gmail.com" <SKBodner@gmail.com> wrote in
news:1147215608.544538.193140@y43g2000cwc.googlegr oups.com:
[color=blue]
> Hello,
>
> I'm stumped and I'm hoping someone could help me figure out
> the best way to track daily attendance for the next 6-4
> months.
>
> I have a list of 80 or so participants who should be attended
> training on a daily basis and am tracking if they attended,
> have an unexcused absence, or are absence with an excuse. At
> the end of the month, I plan to print out reports on those who
> have missed more than one day with an unexcused absence. My
> query will show the number of days missed over the number of
> days training has been provided to give me a percentage of
> days missed.
>
> I understand that over the next 6-9 months, there are a number
> of days! Should I just create a sheet with the participants ID
> and Name and start the next column heading as May 1, then May
> 2...all the way to end of the training program? Should I have
> one table for May, another for June, or put all the dates in
> one table? Is there a better way to do this?
>
> Any suggestions would be appreciated.
>
> Sandy :o)
>[/color]
The textbook example would have three tables,
One for students
StudentID
FullName
Phone,
etc.

The next is Status,
1=present,
2=Absent(Excuse),
3=Absent(no Excuse)
4=Late
etc.

The last is Attendance which contains
StudentID
Date
Status

every schoolday, you run an append query which adds a record for
each student, the current date, optionally a default status.
Then the teacher changes status as required.


--
Bob Quintal

PA is y I've altered my email address.
PC Datasheet
Guest
 
Posts: n/a
#3: May 10 '06

re: Tracking Daily Attendance in MS Access


A couple of notes for using Bob's suggestion ----
1. Don't name your date field in the Attendance table "Date". "Date" is an
Access reserved word and must not be used as a field name. Sooner or later
you will experience a problem if you do.
2. Do not set up your attendance form where you have to enter the date for
each record. Create a routine to create the dates you need for any class
month and then incorporate the routine in a query to automatically generate
the dates.
3. If you don't have too many different types of Status, use an option
group bound to Status on your form. This will give you multiple checkboxes
where you can check the appropriate Status for each student.


--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
Over 1175 users have come to me from the newsgroups requesting help
resource@pcdatasheet.com


"Bob Quintal" <rquintal@sympatico.ca> wrote in message
news:Xns97BEC4FEDBEB5BQuintal@207.35.177.135...[color=blue]
> "SKBodner@gmail.com" <SKBodner@gmail.com> wrote in
> news:1147215608.544538.193140@y43g2000cwc.googlegr oups.com:
>[color=green]
>> Hello,
>>
>> I'm stumped and I'm hoping someone could help me figure out
>> the best way to track daily attendance for the next 6-4
>> months.
>>
>> I have a list of 80 or so participants who should be attended
>> training on a daily basis and am tracking if they attended,
>> have an unexcused absence, or are absence with an excuse. At
>> the end of the month, I plan to print out reports on those who
>> have missed more than one day with an unexcused absence. My
>> query will show the number of days missed over the number of
>> days training has been provided to give me a percentage of
>> days missed.
>>
>> I understand that over the next 6-9 months, there are a number
>> of days! Should I just create a sheet with the participants ID
>> and Name and start the next column heading as May 1, then May
>> 2...all the way to end of the training program? Should I have
>> one table for May, another for June, or put all the dates in
>> one table? Is there a better way to do this?
>>
>> Any suggestions would be appreciated.
>>
>> Sandy :o)
>>[/color]
> The textbook example would have three tables,
> One for students
> StudentID
> FullName
> Phone,
> etc.
>
> The next is Status,
> 1=present,
> 2=Absent(Excuse),
> 3=Absent(no Excuse)
> 4=Late
> etc.
>
> The last is Attendance which contains
> StudentID
> Date
> Status
>
> every schoolday, you run an append query which adds a record for
> each student, the current date, optionally a default status.
> Then the teacher changes status as required.
>
>
> --
> Bob Quintal
>
> PA is y I've altered my email address.[/color]


Please Stop Advertising
Guest
 
Posts: n/a
#4: May 10 '06

re: Tracking Daily Attendance in MS Access


* PC Datasheet:[color=blue]
> A couple of notes for using Bob's suggestion ----
> 1. Don't name your date field in the Attendance table "Date". "Date" is an
> Access reserved word and must not be used as a field name. Sooner or later
> you will experience a problem if you do.
> 2. Do not set up your attendance form where you have to enter the date for
> each record. Create a routine to create the dates you need for any class
> month and then incorporate the routine in a query to automatically generate
> the dates.
> 3. If you don't have too many different types of Status, use an option
> group bound to Status on your form. This will give you multiple checkboxes
> where you can check the appropriate Status for each student.
>
>[/color]


--
To anyone reading this thread:

It is commonly accepted that these newsgroups are for free
exchange of information. Please be aware that PC Datasheet
is a notorious job hunter. If you are considering doing
business with him then I suggest that you take a look at
the link below first.

http://home.tiscali.nl/arracom/whoissteve.html

Randy Harris
David Gatheral
Guest
 
Posts: n/a
#5: May 10 '06

re: Tracking Daily Attendance in MS Access


The whoissteve website is excellent.

Very well done to those that put the time and effort into defeating the
idiot that is PC Datasheet.

David.

Keith Wilby
Guest
 
Posts: n/a
#6: May 10 '06

re: Tracking Daily Attendance in MS Access


"David Gatheral" <davidgatheral@yahoo.co.uk> wrote in message
news:1147256082.780968.223320@u72g2000cwu.googlegr oups.com...[color=blue]
> The whoissteve website is excellent.
>
> Very well done to those that put the time and effort into defeating the
> idiot that is PC Datasheet.
>
> David.
>[/color]

Take a bow Arno R. To be fair, PC D's contribution to this thread is
actually accurate and useful for a change, pity about that sig line.

Keith.


PC Datasheet
Guest
 
Posts: n/a
#7: May 10 '06

re: Tracking Daily Attendance in MS Access


Another idiot from the UK!!!


"David Gatheral" <davidgatheral@yahoo.co.uk> wrote in message
news:1147256082.780968.223320@u72g2000cwu.googlegr oups.com...[color=blue]
> The whoissteve website is excellent.
>
> Very well done to those that put the time and effort into defeating the
> idiot that is PC Datasheet.
>
> David.
>[/color]


Tom van Stiphout
Guest
 
Posts: n/a
#8: May 10 '06

re: Tracking Daily Attendance in MS Access


On Wed, 10 May 2006 12:00:30 +0100, "Keith Wilby" <here@there.com>
wrote:

However, I'm thinking that "...an option group bound to Status on your
form. This will give you multiple checkboxes..." is not good advise.
In an option group you typically want multiple radio buttons, allowing
for exclusive selection of one option among several. Checkboxes should
only be used where multiple can be selected.,

-Tom.


[color=blue]
>"David Gatheral" <davidgatheral@yahoo.co.uk> wrote in message
>news:1147256082.780968.223320@u72g2000cwu.googleg roups.com...[color=green]
>> The whoissteve website is excellent.
>>
>> Very well done to those that put the time and effort into defeating the
>> idiot that is PC Datasheet.
>>
>> David.
>>[/color]
>
>Take a bow Arno R. To be fair, PC D's contribution to this thread is
>actually accurate and useful for a change, pity about that sig line.
>
>Keith.
>[/color]

Keith Wilby
Guest
 
Posts: n/a
#9: May 10 '06

re: Tracking Daily Attendance in MS Access


"Tom van Stiphout" <no.spam.tom7744@cox.net> wrote in message
news:1rr3625r2f9uh49a5nparfg7pb5nl3dphj@4ax.com...[color=blue]
> On Wed, 10 May 2006 12:00:30 +0100, "Keith Wilby" <here@there.com>
> wrote:
>
> However, I'm thinking that "...an option group bound to Status on your
> form. This will give you multiple checkboxes..." is not good advise.
> In an option group you typically want multiple radio buttons, allowing
> for exclusive selection of one option among several. Checkboxes should
> only be used where multiple can be selected.,
>[/color]

I'm being generous and assuming that "multiple checkboxes" should have read
"numerous radio buttons". :-)

Keith.


Larry Linson
Guest
 
Posts: n/a
#10: May 10 '06

re: Tracking Daily Attendance in MS Access


"PC Datasheet" <NoSpam@Spam.Com> wrote
[color=blue]
> Another idiot from the UK!!![/color]

Q: "Why is ever'body always pickin' on Steve?"



Bob Quintal
Guest
 
Posts: n/a
#11: May 10 '06

re: Tracking Daily Attendance in MS Access


"PC Datasheet" <NoSpam@Spam.Com> wrote in
news:lpb8g.728$y4.668@newsread2.news.pas.earthlink .net:
[color=blue]
> A couple of notes for using Bob's suggestion ----
> 1. Don't name your date field in the Attendance table "Date".
> "Date" is an Access reserved word and must not be used as a
> field name. Sooner or later you will experience a problem if
> you do.[/color]

A scare tactic? the "will experience" is incorrect, "might
experience" is the truth. But thanks for pointing out the
possibility.

2. Do not set up your attendance form where you have[color=blue]
> to enter the date for each record. Create a routine to create
> the dates you need for any class month and then incorporate
> the routine in a query to automatically generate the dates.[/color]

I said:
every schoolday, you run an append query which adds a record for
each student, the current date, optionally a default status.
Then the teacher changes status as required.

Steve, if you had spent 15 seconds thinking about the
implications of what I wrote, you would see the total redundance
of your reply.
[color=blue]
> 3. If you don't have too many different types of Status, use
> an option group bound to Status on your form. This will give
> you multiple checkboxes where you can check the appropriate
> Status for each student.[/color]

checkboxes? maybe radio boxes, maybe a combobox, but never
checkboxes for something like this.

PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
Over 1175 users have come to me from the newsgroups requesting
help
resource@pcdatasheet.com

And over 2286 of those have come to the newsgroups afterwards
seeking help to fix your "solutions".

--
Bob Quintal

PA is y I've altered my email address.
Keith Wilby
Guest
 
Posts: n/a
#12: May 11 '06

re: Tracking Daily Attendance in MS Access


"Bob Quintal" <rquintal@sympatico.ca> wrote in message
news:Xns97BFB669CCD5BQuintal@207.35.177.135...[color=blue]
>
> Steve, if you had spent 15 seconds thinking about the
> implications of what I wrote, you would see the total redundance
> of your reply.
>[/color]

Bob, my apologies, I actually didn't read your post before I read PCD's.
Valuable lesson learned. :-)

Keith.


Closed Thread