473,396 Members | 1,799 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Tracking Daily Attendance in MS Access

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)

May 10 '06 #1
11 30640
"SK******@gmail.com" <SK******@gmail.com> wrote in
news:11**********************@y43g2000cwc.googlegr oups.com:
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)

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.
May 10 '06 #2
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
re******@pcdatasheet.com
"Bob Quintal" <rq******@sympatico.ca> wrote in message
news:Xn**********************@207.35.177.135...
"SK******@gmail.com" <SK******@gmail.com> wrote in
news:11**********************@y43g2000cwc.googlegr oups.com:
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)

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.

May 10 '06 #3
* PC Datasheet:
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.

--
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
May 10 '06 #4
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.

May 10 '06 #5
"David Gatheral" <da***********@yahoo.co.uk> wrote in message
news:11**********************@u72g2000cwu.googlegr oups.com...
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.


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.
May 10 '06 #6
Another idiot from the UK!!!
"David Gatheral" <da***********@yahoo.co.uk> wrote in message
news:11**********************@u72g2000cwu.googlegr oups.com...
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.

May 10 '06 #7
On Wed, 10 May 2006 12:00:30 +0100, "Keith Wilby" <he**@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.
"David Gatheral" <da***********@yahoo.co.uk> wrote in message
news:11**********************@u72g2000cwu.googleg roups.com...
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.


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.


May 10 '06 #8
"Tom van Stiphout" <no*************@cox.net> wrote in message
news:1r********************************@4ax.com...
On Wed, 10 May 2006 12:00:30 +0100, "Keith Wilby" <he**@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.,


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

Keith.
May 10 '06 #9
"PC Datasheet" <No****@Spam.Com> wrote
Another idiot from the UK!!!


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

May 10 '06 #10
"PC Datasheet" <No****@Spam.Com> wrote in
news:lp**************@newsread2.news.pas.earthlink .net:
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.
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 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.
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.
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.


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
re******@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.
May 10 '06 #11
"Bob Quintal" <rq******@sympatico.ca> wrote in message
news:Xn*********************@207.35.177.135...

Steve, if you had spent 15 seconds thinking about the
implications of what I wrote, you would see the total redundance
of your reply.


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

Keith.
May 11 '06 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: johnny boy | last post by:
Hi, Is there any simple or easy way to track changes in Access in between saving access files? I think the answer is probably no but maybe someone can help. John
0
by: spattarkine | last post by:
How to create daily attendance system for students which create warning after each 3 absents.idea is as soon as the class and section are selected,names and roll no of all the students of that class...
3
by: pardhu | last post by:
I just need the code for this plz help me
0
by: Rob | last post by:
Hey folks, my mind is turning into mush... I created a report tracking program in access that works beyond my greatest expectations. So of course, I am constantly adding features to make life...
0
by: LiveTecs | last post by:
http://www.livetecs.com TimeLive Web Collaboration Suite is an integrated suite that allows you to manage project life cycle including tasks, issues, bugs, timesheet, expense, attendance. ...
0
by: vidhyapriya | last post by:
Hi All, I am using Fingerprint Time Attendance machine for Employees daily attendance.How to retrieve the details from Fingerprint device to my application.I am using vb.net. Can anyone help...
18
by: yashumrhsn | last post by:
can anyone help me to get userid and password from access database..then it compares the userid and password and opens a new from that shows the details from the database for that user..
3
by: Ed Robichaud | last post by:
I'm struggling to come up with a query/report of daily attendance for records that have only start and stop dates. A x-tab (with parameters that records be within a selected date range) would...
1
by: bretdunlap | last post by:
Hi I need an example of a gym or club/martial-art attendance database. what I want to do is type in a code for a member and his or her attendance is recorder on a table as a date. So that a t a...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.