Background.
I am coding a simple database that tracks jobs and which vehicle they are allocated to for delivery on a given day.
the team that schedule the jobs need a weekly clickable plan that shows the vehicles as the rows and the days of the week as the columns. the jobs showing need to be clickable to go to that record (job)
I can get 7 lists showing the jobs schedule for each day based of the Monday of that week for reference. with each list - if an entry is clicked it references that record.
I was really hoping to be able to do 1 list that each result will be clickable - so I have been trying to 'merge' the 7 queries I have that currently source the 7 lists.
The fields are simple. Vehicle Reg, Job Number and Del Date. The week commencing date is available on the form used and its used to provide criteria for the 7 queries. If I could somehow merge these lists/queries into one cross tab or similar to give something like this it would be great.
| | Mon | Tue | Wed | Thu | Fri | Sat | Sun |
|Vehicle 1 | --- | JOB1 | JOB4 | --- | JOB5 | --- | --- |
|Vehicle 1 | --- | JOB2 | JOB3 | --- | --- | --- | --- |
|Vehicle 1 | --- | JOB6 | JOB3 | --- | --- | --- | --- |
|Vehicle 2 | --- | JOB7 | --- | --- | --- | --- | --- |
|Vehicle 3 | --- | --- | --- | --- | JOB8 | --- | --- |
|Vehicle 3 | --- | --- | --- | --- | JOB9 | --- | --- |
|Vehicle 4 |JOBa| --- | --- | --- | --- | --- | --- |
really hoping there is a solution.....
I am coding a simple database that tracks jobs and which vehicle they are allocated to for delivery on a given day.
the team that schedule the jobs need a weekly clickable plan that shows the vehicles as the rows and the days of the week as the columns. the jobs showing need to be clickable to go to that record (job)
I can get 7 lists showing the jobs schedule for each day based of the Monday of that week for reference. with each list - if an entry is clicked it references that record.
I was really hoping to be able to do 1 list that each result will be clickable - so I have been trying to 'merge' the 7 queries I have that currently source the 7 lists.
The fields are simple. Vehicle Reg, Job Number and Del Date. The week commencing date is available on the form used and its used to provide criteria for the 7 queries. If I could somehow merge these lists/queries into one cross tab or similar to give something like this it would be great.
| | Mon | Tue | Wed | Thu | Fri | Sat | Sun |
|Vehicle 1 | --- | JOB1 | JOB4 | --- | JOB5 | --- | --- |
|Vehicle 1 | --- | JOB2 | JOB3 | --- | --- | --- | --- |
|Vehicle 1 | --- | JOB6 | JOB3 | --- | --- | --- | --- |
|Vehicle 2 | --- | JOB7 | --- | --- | --- | --- | --- |
|Vehicle 3 | --- | --- | --- | --- | JOB8 | --- | --- |
|Vehicle 3 | --- | --- | --- | --- | JOB9 | --- | --- |
|Vehicle 4 |JOBa| --- | --- | --- | --- | --- | --- |
really hoping there is a solution.....