I have four queries that compile the following info:
Querie 1 Querie 2 Querie 3 Querie 4
Date Date Date Date
Shift Shift Shift Shift
Machine Machine Machine Machine
Operator Downtime Planned Down Setup Time
Production Hrs
The info is split up into four groups because the data is collected from different sources and saves time entering it separately instead of compiling it manually before entry.
What I need to do is compile these four queries so I get the resulting info for a report:
Date
Shift
Machine
Production Hours
Downtime
Planned Downtime
Setup Time
I will need to group this by machine and subgrouped by date, but some of the data areas will be blank. For instance, if I have time listed as downtime or planned down, there might not be a number for production for that date. So a typical day might have 5 hours under production, three hours under down time and nothing under planned down or setup. I haven't figured out a way to pull in dissimilar information like this into a single table. A typical query will either give me every known multiple of the data or nothing at all.
Querie 1 Querie 2 Querie 3 Querie 4
Date Date Date Date
Shift Shift Shift Shift
Machine Machine Machine Machine
Operator Downtime Planned Down Setup Time
Production Hrs
The info is split up into four groups because the data is collected from different sources and saves time entering it separately instead of compiling it manually before entry.
What I need to do is compile these four queries so I get the resulting info for a report:
Date
Shift
Machine
Production Hours
Downtime
Planned Downtime
Setup Time
I will need to group this by machine and subgrouped by date, but some of the data areas will be blank. For instance, if I have time listed as downtime or planned down, there might not be a number for production for that date. So a typical day might have 5 hours under production, three hours under down time and nothing under planned down or setup. I haven't figured out a way to pull in dissimilar information like this into a single table. A typical query will either give me every known multiple of the data or nothing at all.