Ok, Here is my structure
tblCategory:
ID,
Category
tblCompartments:
Compartment No, Compartment Name, Deck
Level
tblLabel Sizes:
ID, Name, Size,
Desc
tblLabelTeam:
EmployeeID, Name
tblLabelPlateData:
ID,
Mel_NO, Plate_NO, RefDwgNo, Category, Valve No,
BLN, HSC_NO, Compartment No,
Deck, Frame, C/L_Ref,
CCL, ACAD_FILE_NAME, Equipment, Remarks,
INSCR_NBR,
Inscription Line 1, Inscription Line 2, Inscription Line 3,
Inscription Line 4,
Inscription Line 5, Inscription Line 6, Inscription Line
7, Inscription Line 8,
Inscription Line 9, Hull, Authority, Letter Size,
Label Size, Process, Material,
Size Code, System, Secure To, Closure Class,
Ordered by, Ordered Date,
Recieved by, Recieved Date, Installed by, Installed
Date, Req No.
10 queries that represent 10 different Label Size(s) that
return
from tblLabelPlateData- Inscription Line 1, Inscription Line 2,
Inscription Line 3, Inscription Line 4,
Inscription Line 5, Inscription Line
6, Inscription Line 7, Inscription Line 8,
Inscription Line 9, Plate No,
Mel_No, RefDwgNo, Compartment, Label Size, ID.
The name of these queries are
the size, for example 2x2.
(NOTE: the criteria here is where label size
equals 2x2 in the Label Size field)
10 Reports that are created from the
ten queries In 2x2 report, for example,
I grabbed the information from query
2x2 and stuck it in a rectangle control sized to 2" x 2".
Now, this will
print only the labels that were entered into tblLabelPlateData where Label Size
Field = 2x2.
The user also wishes to print the reports strictly by compartment. How do I query, filter, to only select the different reports, only in specified compartment.
I have a 1 to many relationship from tblCompartments (field
Compartment No) to tblLablePLateData(field Compartment)
Can we start from
there?