T
T. Wilson
I am building a database of employee records. On one of the tabbed sections
of an employees data, I would like to display his/her current time card.
The time card data is stored in a table constructed as follows:
ItemID Autonumber
EmployeeID Integer
Date Date
TaskID Integer
TimeSpent Double (overkill here I know)
Paid Yes/No
My main table, of course, stores the employee id, so that could be used to
link these two tables. From there, I would like a representation similar to
a time card, so that my display would look something like the following...
Date
TaskID TimeSpent
TaskID TimeSpent
TaskID TimeSpent
----------
TotalTimeSpent for this day
Date
TaskID TimeSpent
TaskID TimeSpent
TaskID TimeSpent
TaskID TimeSpent
----------
TotalTimeSpent for this day
etc., etc., until the end of the period and then...
=======
TotalTimeSpent for the period
Seems as though this is easy to do in a report, when you can create groups
on the report itself, but I'm at a loss to understand how I could do this on
a form. Any suggestions?
Todd Wilson
of an employees data, I would like to display his/her current time card.
The time card data is stored in a table constructed as follows:
ItemID Autonumber
EmployeeID Integer
Date Date
TaskID Integer
TimeSpent Double (overkill here I know)
Paid Yes/No
My main table, of course, stores the employee id, so that could be used to
link these two tables. From there, I would like a representation similar to
a time card, so that my display would look something like the following...
Date
TaskID TimeSpent
TaskID TimeSpent
TaskID TimeSpent
----------
TotalTimeSpent for this day
Date
TaskID TimeSpent
TaskID TimeSpent
TaskID TimeSpent
TaskID TimeSpent
----------
TotalTimeSpent for this day
etc., etc., until the end of the period and then...
=======
TotalTimeSpent for the period
Seems as though this is easy to do in a report, when you can create groups
on the report itself, but I'm at a loss to understand how I could do this on
a form. Any suggestions?
Todd Wilson