Employee Time card form

  • Thread starter Thread starter Keith
  • Start date Start date
K

Keith

I have a table containing two fields - Employee_ID and Time_Stamp.

I've already created a form that scans in Employee_IDs; and once any
Employee_ID is scanned in, the ID and scanned time is recorded to the table.
In addition to what it already does, the form needs to populate the
employee's punch time records for the current week.

For example: (current date and time is Wednesday 9:02 am)

(Form view before update)
Employee ID: ___________________

(Form view after update)
Employee ID: _1001 (Enter)_______

________________________________
Employee ID: 1001
Mon: 9:00 am
Mon: 5:00 pm
Tue: 8:59 am
Tue: 5:01 pm
Wed: 9:02 am
________________________________

I hope my question is clear.
 
On Tue, 1 Jun 2010 11:44:02 -0700, Keith

I would use a subform for that. When the ID is scanned in, you can
requery the subform and it would show the data for this employee. Use
the subform's LinkMasterFields and LinkChildFields properties to
restrict the subform to the current employee.

-Tom.
Microsoft Access MVP
 
Back
Top