Hiding lines in detail

A

Ana

Hi,
I'd like to hide a line when a field from a query = a 0 or IS NULL.
Meaning:
Client_name Bill# Total
Joe Brown 123456 $1.500 (this line should appear)
Joe Brown (this line shouldn't appear)

HOWTO do it?
TIA
Ana
Access 2003
 
R

Rick Brandt

Ana said:
Hi,
I'd like to hide a line when a field from a query = a 0 or IS NULL.
Meaning:
Client_name Bill# Total
Joe Brown 123456 $1.500 (this line should appear)
Joe Brown (this line shouldn't appear)

HOWTO do it?
TIA
Ana
Access 2003

Is there a reason the report's query could not just include criteria that
would filter those rows out?
 
O

Ofer Cohen

In the report record source add a criteria to the field

Is Not Null And <> 0

In SQL
Select * From TableName Where FieldName Is Not Null And FieldName <> 0
 

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