R
RandyH
Hi all, Thanks in advance-and sorry for the length of this post!
I made a post on 1/16/04. John Vinson was kind enough to help me,
unfortunately I did a poor job of explaining my problem (sorry John). I'm
building a time
sheet database, using a form and subform (Operations and Operations Sub
Form). The main form shows the EmployeeID, LastName and FirstName (from the
Employees Table). I have an unbound combo box in the form header to make
selection of the employee easier (filtering the form(s), showing only that
employees time sheet data in the subform).
My subform is based off of a query that displays/allows data input of
the following: AccountNumber, AccountDescription, EmployeeID, LaborDate,
LaborHours, BeginingPayPeriod, EndingPayPeriod and PayDate. This as it is
works fine. The problem is that the employees need to record everything they
do during the day (each day their LaborHours entered should total to 8 hrs.
or however long they worked) Data entry is going to be a nightmare! I have
been experimenting with moving the PayPeriod and PayDate fields off of the
subform and add them to the form as a combo box to make data entry faster.
My reasoning for this is that the BeginingPayPeriod, EndingPayPeriod and
PayDate will remain the same for two weeks or so. This theory would also
limit the records visible in the subform to that particular pay period.
I have not been able to get this to work. My database structure is as
follows:
Tables:
Accounts - primary key is Record Number (auto-number field)
Time - primary key is AccountNumber (text field)
Employees - primary key is EmployeeID (number field)
Relationships - one to many from Accounts(AccountNumber) to
Time(AccountNumber)
Queries: - (of relevance)
Operations Query - used on my main form returns; EmployeeID, LastName
and FirstName
from Employees table.
Time Query - used on my subform returns; AccountNumber,
AccountDescription, EmployeeID, LaborDate, LaborHours, BeginingPayPeriod,
EndingPayPeriod and PayDate.
I made a post on 1/16/04. John Vinson was kind enough to help me,
unfortunately I did a poor job of explaining my problem (sorry John). I'm
building a time
sheet database, using a form and subform (Operations and Operations Sub
Form). The main form shows the EmployeeID, LastName and FirstName (from the
Employees Table). I have an unbound combo box in the form header to make
selection of the employee easier (filtering the form(s), showing only that
employees time sheet data in the subform).
My subform is based off of a query that displays/allows data input of
the following: AccountNumber, AccountDescription, EmployeeID, LaborDate,
LaborHours, BeginingPayPeriod, EndingPayPeriod and PayDate. This as it is
works fine. The problem is that the employees need to record everything they
do during the day (each day their LaborHours entered should total to 8 hrs.
or however long they worked) Data entry is going to be a nightmare! I have
been experimenting with moving the PayPeriod and PayDate fields off of the
subform and add them to the form as a combo box to make data entry faster.
My reasoning for this is that the BeginingPayPeriod, EndingPayPeriod and
PayDate will remain the same for two weeks or so. This theory would also
limit the records visible in the subform to that particular pay period.
I have not been able to get this to work. My database structure is as
follows:
Tables:
Accounts - primary key is Record Number (auto-number field)
Time - primary key is AccountNumber (text field)
Employees - primary key is EmployeeID (number field)
Relationships - one to many from Accounts(AccountNumber) to
Time(AccountNumber)
Queries: - (of relevance)
Operations Query - used on my main form returns; EmployeeID, LastName
and FirstName
from Employees table.
Time Query - used on my subform returns; AccountNumber,
AccountDescription, EmployeeID, LaborDate, LaborHours, BeginingPayPeriod,
EndingPayPeriod and PayDate.