I know this is probably very simple, but I would like to read through the records in a query, and write this data to a table after manipulating it. Basically what I am trying to do is get data that is in the form:
ClientName EmployeeName Date HoursWorked
I want to read through each record, and using code, determine the day of the week (ie Sun, Mon, etc) that each date occurrs on and then write that to a table setup as follows:
Sun_EmployeeName Sun_Hours Mon_EmployeeName Mon_Hours...
I plan to maintain a count for each day so I know which record to update. I am trying to create a schedule that shows the days of the week and what employees are working each day and when they are working.
Any help would be awesome....
Thanks
ClientName EmployeeName Date HoursWorked
I want to read through each record, and using code, determine the day of the week (ie Sun, Mon, etc) that each date occurrs on and then write that to a table setup as follows:
Sun_EmployeeName Sun_Hours Mon_EmployeeName Mon_Hours...
I plan to maintain a count for each day so I know which record to update. I am trying to create a schedule that shows the days of the week and what employees are working each day and when they are working.
Any help would be awesome....
Thanks