Okay
I have a Sign In form where the user selects their name from a combo box (cboEmployees) and then selects the project they worked also from a combo box (cboProjects) Then they entered the date they worked on that project by double clicking the Date textbox (txtDate) and selecting the date from a calendar form the txtdate is using the following format ddd", "mmm d", "yyyy which translates to Wed,May 21, 2003. Then the user proceds to enter the Sign In time (txtSignIn) and then the Sign out time (txtSignOut) then the time is calculated and put into a text box (txtTotalHrs).
All that specific information is stored under their specific fields in a table called tblSignIn.
Now i would like to generate a report that will allow me to seperate hours worked for the specific project for each day of the week.
Sample Report
-----------------------------------------------------------
Vendor Name Contract #
Location Defect Issue
Week (Mon - Sun) Part #
Shift
-----------------------------------------------------------
Employee Name Mon Tues Wed Thurs Fri Sat Sun Total
Hours
All the information from this report will be based on what the users enter on the SignIn form
How can i do this???
I have a Sign In form where the user selects their name from a combo box (cboEmployees) and then selects the project they worked also from a combo box (cboProjects) Then they entered the date they worked on that project by double clicking the Date textbox (txtDate) and selecting the date from a calendar form the txtdate is using the following format ddd", "mmm d", "yyyy which translates to Wed,May 21, 2003. Then the user proceds to enter the Sign In time (txtSignIn) and then the Sign out time (txtSignOut) then the time is calculated and put into a text box (txtTotalHrs).
All that specific information is stored under their specific fields in a table called tblSignIn.
Now i would like to generate a report that will allow me to seperate hours worked for the specific project for each day of the week.
Sample Report
-----------------------------------------------------------
Vendor Name Contract #
Location Defect Issue
Week (Mon - Sun) Part #
Shift
-----------------------------------------------------------
Employee Name Mon Tues Wed Thurs Fri Sat Sun Total
Hours
All the information from this report will be based on what the users enter on the SignIn form
How can i do this???