I have a table "MainTable" with [Project#] as the primary key. Another table is "Ins" with [Project#] as the primary key. There should be one record in the "Ins" table for each record in the "MainTable". One of the maintenance items in my program is for someone to push a button and it runs a query, shows a report that identifies those records in "MainTable" that are not in the "Ins" table so I can then add those records as needed. Now the problem: Before the company began we identified previous projects with a [Project#] of A1, A2, E1, E2, etc. Now all are numbers are 98-01; 99-03; 00-01; 01-03, etc. The old record starting with alpha are not needed in the "Ins" table and it would be silly to put them in the table just to solve my problem. Right now my query takes "MainTable.Project#" and sees if "Ins.Project#" Is Null. This shows about 4 records starting with numbers and all my records starting with alpha. I added onto Is Null to say "Is Null AND <A" but then it does not give me any records at all. If I just put in <A it gives me all projects beginning with numbers.
How do I write the correct AND statement please? Appreciate any help I can get. Janet Lyn
How do I write the correct AND statement please? Appreciate any help I can get. Janet Lyn