A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

attendance chart



 
 
Thread Tools Display Modes
  #1  
Old April 21st, 2005, 01:40 AM
James A
external usenet poster
 
Posts: n/a
Default attendance chart

I'm looking for an attendance chart in which I can input the name, date of
absence, reason of absence, and the service level of my company that day. I
would like a form to enter the info in and the ability to run a report on
individual reps. Thanks for any help you can give!
  #2  
Old April 21st, 2005, 03:26 AM
tina
external usenet poster
 
Posts: n/a
Default

suggest a minimum of three tables:

tblReps
RepID (primary key)
FirstName
LastName
(any other fields that describe a rep)

tblRepAbsences
AbsID (primary key)
RepID (foreign key from tblReps)
DateOfAbsence (don't use the word "Date" as a fieldname)
Reason

tblServiceLevels
LevelID (primary key)
ServiceLevel
ServiceDate

i assume you calculate the service level based in part on the number of reps
who actually work a given day or shift - but i also assume the service level
is a daily (or per shift) *company* value, not tied to a specific rep being
absent. since that number is not directly related to a specific rep or
specific absence record, it doesn't belong in either of the first two
tables.
it's also possible that the service level can be calculated entirely from
data that are entered in the database - in which case you may not need to
save the service level as hard data at all, but merely calculate it when
needed.

you need to forget about forms and reports for the moment, and figure out
what data you need to put in the database, and how that data are related.
then create your tables/relationships. that's your foundation; once it's
built correctly, you can build the rest of the database (queries, forms,
reports) on top of it. creating properly normalized tables, and
relationships, is no small task. for information to help you accomplish it,
suggest you take a look at

http://www.ltcomputerdesigns.com/JCReferences.html

focusing on Starting Out, and Database Design 101, links.

hth


"James A" James wrote in message
...
I'm looking for an attendance chart in which I can input the name, date of
absence, reason of absence, and the service level of my company that day.

I
would like a form to enter the info in and the ability to run a report on
individual reps. Thanks for any help you can give!



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Selecting Charts in a Macro Herman Merman Charts and Charting 1 August 18th, 2004 12:25 AM
Chart menu visible property Sandy V Charts and Charting 8 May 17th, 2004 01:39 PM
chartgroups,chartobjects etc-confusion to me R.VENKATARAMAN Charts and Charting 1 April 10th, 2004 04:09 PM
'Closing' chart window *and* removing chart using VBA Marc R. Bertrand Charts and Charting 7 December 17th, 2003 04:30 PM
Styles for chart Debra Dalgleish Charts and Charting 1 October 3rd, 2003 12:27 PM


All times are GMT +1. The time now is 08:32 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.