Faulty logic or my lack of Access knowledge seems to have put a halt on my project. I have a database that keeps track of the tasks that people perform on a loan. So, in my case, the user enters his/her loan number and checks a box that shows that they did task1, task2, task3, and/or task4 on the loan.
Now, I have to make a report for the higher ups that shows how people are spending their day. This is where the trouble for me starts. I need to translate a task1 into 15 minutes of work, task2 into 25 minutes of work, task3 into 15 minutes of work, and task4 into 42 minutes of work. So that one of the reports looks like this:
Jane
-- Loan number -- task1 -- task2 -- task3 -- task4 -- time
12345678 yes yes no no 40
56789012 yes no yes no 30
the sum of each column should show here.
John
-- Loan number -- task1 -- task2 -- task3 -- task4 -- time
89789012 no no no yes 42
12338564 yes no yes no 30
the sum of each column should show here.
Did that make sense to anyone? Can someone point me in the right direction?
Now, I have to make a report for the higher ups that shows how people are spending their day. This is where the trouble for me starts. I need to translate a task1 into 15 minutes of work, task2 into 25 minutes of work, task3 into 15 minutes of work, and task4 into 42 minutes of work. So that one of the reports looks like this:
Jane
-- Loan number -- task1 -- task2 -- task3 -- task4 -- time
12345678 yes yes no no 40
56789012 yes no yes no 30
the sum of each column should show here.
John
-- Loan number -- task1 -- task2 -- task3 -- task4 -- time
89789012 no no no yes 42
12338564 yes no yes no 30
the sum of each column should show here.
Did that make sense to anyone? Can someone point me in the right direction?