I have 2 tables.
TblTag - This consists of tags i.e. LIT-11000
This table has many columns, the ones that matter is the - TAG and FUNCTION
FUNTION - is the LIT portion of the TAG
TblMatrix - This consists of a matrix style table.
Down the First column are all the possible FUNCTIONS(ie. LIT)
The next 30 columns are the different Exhibits(documents that must be filled out for the item)
There is a TRUE when a Exhibit is needed for the FUNCTION and a FALSE when a Exhibit is not needed.
I need to someone how create a query or something that will compare my FUNCTIONS from tblTag to my TblMatrix and make a new table tlbExhibit
This table would consist of 1 TAG for each Exhibit that was listed in the matrix.
For example:
[tblTAG]
TAG DESCRIPTION FUNCTION DRAWING
LIT-1100 Level Indicator LIT XXX-XXX
LIT-1133 Level Indicator LIT XXX-YYY
[tblMatrix]
TAG Exhibit 1 Exhibit 2 Exhibit 3 Exhibit 4
LIT TRUE TRUE FALSE TRUE
[tblExhibit]
TAG EXHIBIT
LIT-1100 Exhibit 1
LIT-1100 Exhibit 2
LIT-1100 Exhibit 4
LIT-1133 Exhibit 2
TblTag - This consists of tags i.e. LIT-11000
This table has many columns, the ones that matter is the - TAG and FUNCTION
FUNTION - is the LIT portion of the TAG
TblMatrix - This consists of a matrix style table.
Down the First column are all the possible FUNCTIONS(ie. LIT)
The next 30 columns are the different Exhibits(documents that must be filled out for the item)
There is a TRUE when a Exhibit is needed for the FUNCTION and a FALSE when a Exhibit is not needed.
I need to someone how create a query or something that will compare my FUNCTIONS from tblTag to my TblMatrix and make a new table tlbExhibit
This table would consist of 1 TAG for each Exhibit that was listed in the matrix.
For example:
[tblTAG]
TAG DESCRIPTION FUNCTION DRAWING
LIT-1100 Level Indicator LIT XXX-XXX
LIT-1133 Level Indicator LIT XXX-YYY
[tblMatrix]
TAG Exhibit 1 Exhibit 2 Exhibit 3 Exhibit 4
LIT TRUE TRUE FALSE TRUE
[tblExhibit]
TAG EXHIBIT
LIT-1100 Exhibit 1
LIT-1100 Exhibit 2
LIT-1100 Exhibit 4
LIT-1133 Exhibit 2