I am running electronic tube production unit. I developed a ms access database to track my production flow.
Production goes through 3-phases, (1)Fabrication (2)Testing & (Issuing).
Each product is identified by unique sl.no.
I created 4-tables (1)product entry (2)Fabrication (3)Testing & (4)Issuing.
Product entry table contains only one field of text type (product sl.no), that is its primary key.
Second table contains sl.no(primary key), fab sent date,fab receive date, clearance_for_testing (yes/no field).
Third table contains sl.no(primary key), test agent, Test sent date,test receive date, test sticker,clearance_for_supply (yes/no field).
Fourth table contains sl.no(primary key), supplier, supply date.
PROBLEM:
sl.no of second table should take a 'look up' on a query. That query should contains a field that has all sl.nos of products which entered in first table except those
which were sent for fabrication (fabrication sent date field not null).
sl.no of third table should take a 'look up' on a query. That query should contains a field that has all sl.nos of products which entered in second table and cleared for testing except those which were sent for testing (test sent date field not null).
sl.no of fourth table should take a 'look up' on a query. That query should contains a field that has all sl.nos of products which entered in third table and cleared for supply except those which were sent for supply (supply date field not null).
Someone help? When I went for look-up creation, the error states "No valid field values can be found. You may have selected a query that uses the table you are adding the look-up to. Please select a new source."