WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Has anyone created?

 
   Home -> Office other -> Table Design RSS
Next:  What is the best way to set-up my Database?  
Author Message
duchessofireland

External


Since: Jan 10, 2008
Posts: 35



(Msg. 1) Posted: Tue Jul 22, 2008 3:41 pm
Post subject: Has anyone created?
Archived from groups: microsoft>public>access>tablesdbdesign (more info?)

I'm looking for ideas on how to create a "daily diary". Just want to have
each day with a list of employees and what they worked on each day. Has
anyone created anything like this? Or does anyone know of any place that
might have a template for this? I've looked at the microsoft
templates....nothing. Any help or direction would be greatly appreciated.
Thanks
Back to top
Login to vote
Steve

External


Since: Jul 10, 2008
Posts: 335



(Msg. 2) Posted: Tue Jul 22, 2008 8:44 pm
Post subject: Re: Has anyone created? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Consider .....

TblEmployee
EmployeeID
EmployeeFirstName
EmployeeLastName
<Other fields about an employee>

TblWorkType
WorkTypeID
WorkType

TblEmployeeWork
EmployeeWorkID
EmployeeID
WorkTypeID
WorkDate
WorkStartTime
WorkFinishTime

This should give you an idea about what you need. Post back with more
description of what work employees do and I can refine my suggestion for
you.

Steve



"duchessofireland" <duchessofireland RemoveThis @discussions.microsoft.com> wrote in
message news:CF9C48EC-43F6-4F76-9816-87A9D338FEE3@microsoft.com...
> I'm looking for ideas on how to create a "daily diary". Just want to have
> each day with a list of employees and what they worked on each day. Has
> anyone created anything like this? Or does anyone know of any place that
> might have a template for this? I've looked at the microsoft
> templates....nothing. Any help or direction would be greatly appreciated.
> Thanks
Back to top
Login to vote
duchessofireland

External


Since: Jan 10, 2008
Posts: 35



(Msg. 3) Posted: Wed Jul 23, 2008 5:02 am
Post subject: Re: Has anyone created? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

This looks good. I'm not clear on what EmployeeWorkID is though. Basically
this is what I want....

7-1-08 (date)
Rex (employee)
Judy System (Location) - Check Reads (work performed)
Cedargrove System (Location) - Collections (work performed)

One of these for each employee. It is possible for each employee to perform
only one job, but is also possible for them to perform multiple jobs.

Thanks for your input.



"Steve" wrote:

> Consider .....
>
> TblEmployee
> EmployeeID
> EmployeeFirstName
> EmployeeLastName
> <Other fields about an employee>
>
> TblWorkType
> WorkTypeID
> WorkType
>
> TblEmployeeWork
> EmployeeWorkID
> EmployeeID
> WorkTypeID
> WorkDate
> WorkStartTime
> WorkFinishTime
>
> This should give you an idea about what you need. Post back with more
> description of what work employees do and I can refine my suggestion for
> you.
>
> Steve
>
>
>
> "duchessofireland" <duchessofireland DeleteThis @discussions.microsoft.com> wrote in
> message news:CF9C48EC-43F6-4F76-9816-87A9D338FEE3@microsoft.com...
> > I'm looking for ideas on how to create a "daily diary". Just want to have
> > each day with a list of employees and what they worked on each day. Has
> > anyone created anything like this? Or does anyone know of any place that
> > might have a template for this? I've looked at the microsoft
> > templates....nothing. Any help or direction would be greatly appreciated.
> > Thanks
>
>
>
Back to top
Login to vote
Steve

External


Since: Jul 10, 2008
Posts: 335



(Msg. 4) Posted: Wed Jul 23, 2008 10:40 am
Post subject: Re: Has anyone created? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

TblEmployee
EmployeeID
EmployeeFirstName
EmployeeLastName
<Other fields about an employee>

TblWorkLocation
WorkLocationID
WorkLocation

TblWorkType
WorkTypeID
WorkType

TblEmployeeWork
EmployeeWorkID
EmployeeID
WorkDate

TblEmployeeWorkDetail
EmployeeWorkDetailID
EmployeeWorkID
WorkLocationID
WorkTypeID
WorkStartTime
WorkFinishTime

If there is a distinct set of worked performed such as Check Reads and
Collections, they would be your data in the WorkType field of TblWorkType.
Then as you enter employee work, you would have a combobox that gets its
items from TblWorkType.

Note I added a new table for location. If there is a distinct set of work
locations such as Judy System and Cedargrove System, they would be your data
in the WorkLocation field of TblWorkLocation. Then as you enter employee
work, you would have a combobox that gets its items from TblWorkLocation.

Note I added the table TblEmployeeWorkDetail. This table records one or more
jobs done by a specific employee identified by EmployeeID in TblEmployeeWork
on a specific date identified by WorkDate in TblEmployeeWork.
TblEmployeeWork and TblEmployeeWorkDetail are related through
EmployeeWorkID.
EmployeeWorkID is the primary key of TblEmployeeWork and a foreign key in
TblEmployeeWorkDetail. You would enter employee work records in these two
tables in a main form based on TblEmployeeWork and a subform based on
TblEmployeeWorkDetail.

The above table structure assumes that on any day an employee may work at
more than one location. If that is not the case an an employee will ALWAYS
work at the same location albeit possibly more than one job type, the
WorkLocationID should be moved from TblEmployeeWorkDetail to
TblEmployeeWork.

Steve
rlaird.RemoveThis@penn.com







"duchessofireland" <duchessofireland.RemoveThis@discussions.microsoft.com> wrote in
message news:108E176B-16C6-472C-BB0C-7CF55BF0FE45@microsoft.com...
> This looks good. I'm not clear on what EmployeeWorkID is though.
> Basically
> this is what I want....
>
> 7-1-08 (date)
> Rex (employee)
> Judy System (Location) - Check Reads (work performed)
> Cedargrove System (Location) - Collections (work performed)
>
> One of these for each employee. It is possible for each employee to
> perform
> only one job, but is also possible for them to perform multiple jobs.
>
> Thanks for your input.
>
>
>
> "Steve" wrote:
>
>> Consider .....
>>
>> TblEmployee
>> EmployeeID
>> EmployeeFirstName
>> EmployeeLastName
>> <Other fields about an employee>
>>
>> TblWorkType
>> WorkTypeID
>> WorkType
>>
>> TblEmployeeWork
>> EmployeeWorkID
>> EmployeeID
>> WorkTypeID
>> WorkDate
>> WorkStartTime
>> WorkFinishTime
>>
>> This should give you an idea about what you need. Post back with more
>> description of what work employees do and I can refine my suggestion for
>> you.
>>
>> Steve
>>
>>
>>
>> "duchessofireland" <duchessofireland.RemoveThis@discussions.microsoft.com> wrote in
>> message news:CF9C48EC-43F6-4F76-9816-87A9D338FEE3@microsoft.com...
>> > I'm looking for ideas on how to create a "daily diary". Just want to
>> > have
>> > each day with a list of employees and what they worked on each day.
>> > Has
>> > anyone created anything like this? Or does anyone know of any place
>> > that
>> > might have a template for this? I've looked at the microsoft
>> > templates....nothing. Any help or direction would be greatly
>> > appreciated.
>> > Thanks
>>
>>
>>
Back to top
Login to vote
Display posts from previous:   
       Home -> Office other -> Table Design All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
 Office
  Office Other
 Security
 WinRAR
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET