Filtering a record out of a form

P

PeteVTX

I have a make table query that produces the data that I am looking for in a
table. But the table always includes a blank line which I do not want to see
on the form that uses the table. How do I filter out this offending (blank)
record so that it does not appear on the form?
 
M

Maurice

Make a query based on the maketable and set criteria on a specific field Not
Null
that should get rid of your unwanted record.

Or you could modify your maketable query with this criteria (Not Null) to
your specific field. That way the maketable doesn't have the empty record.

Maurice
 
R

Rick Brandt

PeteVTX said:
I have a make table query that produces the data that I am looking
for in a table. But the table always includes a blank line which I do
not want to see on the form that uses the table. How do I filter out
this offending (blank) record so that it does not appear on the form?

Are you sure it's not just the NEW RECORD row? That is not an actual record,
but a placeholder where you can enter a new record. If you don't want to
see it on your form set the AllowAdditions property to No.
 
P

PeteVTX

That sorted it. Thanks.

Rick Brandt said:
Are you sure it's not just the NEW RECORD row? That is not an actual record,
but a placeholder where you can enter a new record. If you don't want to
see it on your form set the AllowAdditions property to No.
 
P

PeteVTX

Thanks

Maurice said:
Make a query based on the maketable and set criteria on a specific field Not
Null
that should get rid of your unwanted record.

Or you could modify your maketable query with this criteria (Not Null) to
your specific field. That way the maketable doesn't have the empty record.

Maurice
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top