i have an Employees table which holds amongst the basics, Hourly Rate, Daily Pay, and Weekly Salary, fields which are used based on the employee type.
I also have a Employee Log table that holds, Work Date, Start/End Times, Hours (which is calculated after start/end times are entered), Total Pay for Day (which is calculated based on employee type), and other fields that are not relavant to this particular problem i am having.
I need to add all the "total for day" fields for each employee for each work week, and then insert that sum into a payroll table. I have created a Totals query just fine that gives me the correct amounts for each employee and each week, but when i try to use that query in an update query i get the error "Operation must use an updatable query".
How do I overcome this problem and insert those values into my payroll table like i need to?
I also have a Employee Log table that holds, Work Date, Start/End Times, Hours (which is calculated after start/end times are entered), Total Pay for Day (which is calculated based on employee type), and other fields that are not relavant to this particular problem i am having.
I need to add all the "total for day" fields for each employee for each work week, and then insert that sum into a payroll table. I have created a Totals query just fine that gives me the correct amounts for each employee and each week, but when i try to use that query in an update query i get the error "Operation must use an updatable query".
How do I overcome this problem and insert those values into my payroll table like i need to?