Hi, good evening!
I have a DB in access 2010 that I am working for my job that has the following tables:
tbl_ProjectInformation:
ProjectID ($)
Name
Date of initiation
Date of completion
tbl_Blocks:
ProjectID ($)
Blocks ($)
Date of initiation
Date of completion
tbl_Documents
ProjectID ($)
Blocks ($)
Documents ($)
Receiving date
($) is the primary key in each table.
So, the tbl_ProjectInformation is related to the tblBlocks by ProjectID and the tbl_Blocks is related to tbl_Documents by ProjectID and Blocks.
It means that every new entry on tbl_project will have multiple (yet already defined) entries in tbl_Blocks that will also have multiple (yet already defined also) entries in tbl_documents.
The tbl_documents has a field named "receiving date" in which I put the date in which I have received each document (it could takes months to receive all documents for a block).
When all documents for a specific block is received, I have to be warned.
My project will be only finished when all blocks are finished (it means that I have received all documents for each block and all blocks for each project).
So, I have also to be warned when all blocks for a specific project was received.
I would like to run a query that shows only the field "blocks" from tbl_blocks from which I have included all date in field "receiving date" in table tbl_documents. It means that if I have to receive 10 documents for that block and I received only 8, the block could not appear in the query, but when I receive all 10 documents, it has to appears in the query.
I dont know if I made myself clear, if you need I could include the DB here for someone to help me... I have googled it but honestly, I dont even know how to search this feature since I am very newbie in access...
Thank you in advance for your support