473,758 Members | 5,909 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 30715
"SK******@gmail .com" <SK******@gmail .com> wrote in
news:11******** **************@ y43g2000cwc.goo glegroups.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******@pcdata sheet.com
"Bob Quintal" <rq******@sympa tico.ca> wrote in message
news:Xn******** **************@ 207.35.177.135. ..
"SK******@gmail .com" <SK******@gmail .com> wrote in
news:11******** **************@ y43g2000cwc.goo glegroups.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.goo glegroups.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.goo glegroups.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.go oglegroups.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.c om...
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.Co m> wrote
Another idiot from the UK!!!


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

May 10 '06 #10

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

Similar topics

3
1818
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
2267
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 will appear and by clicing the checkbox a student is marked present.At the end of the month the ateendance report should appear like a snapshot of attendance register.
3
5611
by: pardhu | last post by:
I just need the code for this plz help me
0
4058
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 easier for my users (and harder for myself). Every week my secretary exports different sets of data into Excel (via cmd buttons on form) then copies and pastes the data into powerpoint slides for our weekly staff meeting. I want to simplify this...
0
1799
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. TimeLive is available in two different flavors. Hosted version and downloadable version. Downloadable version required certain system requirement to install on local server. Whereas hosted version is already installed on our fully managed server on...
0
1332
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 me...Its urgent..Thanx in Advance With Regards, Vidhya
18
3554
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
1753
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 seem to be the way to go here, but how do I get a count for each date within that range? thanks -Ed
1
2237
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 later point I can see out of several hundred members who hasn't been in between a specific date. And so that I can do statistics later on.
0
9489
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9298
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10072
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9885
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9737
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7286
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
1
3829
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3399
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2698
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.