1. I have a form and if you click on one button on the form it runs a macro that opens up another form and the macro has the following condition: [contract]![Project_Name]<>""
2. When the other form is opened, it does it on a query that contains the following code:
SELECT contract.*,audit.* FROM contract INNER JOIN audit ON contract.x=audit.x;
The purpose is to run the second form using two joined tables, but only showing data where one particular field is not null.
It works fine, and in fact initially the filter shows that it contains the correct number of records, eg 1 of 3, however, if you keep doing page down, you will end up with a blank record, eg the filter shows 3 records, but if you keep page downing, you will get to a 4th record which is blank, and then it shows 1 of 4, and then it won't go any further, thank gosh
any idea how to prevent that extra blank record from showing????
2. When the other form is opened, it does it on a query that contains the following code:
SELECT contract.*,audit.* FROM contract INNER JOIN audit ON contract.x=audit.x;
The purpose is to run the second form using two joined tables, but only showing data where one particular field is not null.
It works fine, and in fact initially the filter shows that it contains the correct number of records, eg 1 of 3, however, if you keep doing page down, you will end up with a blank record, eg the filter shows 3 records, but if you keep page downing, you will get to a 4th record which is blank, and then it shows 1 of 4, and then it won't go any further, thank gosh
any idea how to prevent that extra blank record from showing????