Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Reporting on Null Values 1

Status
Not open for further replies.

mdj3366

Technical User
Aug 27, 2002
49
US
Hi,

I am using CRXI connecting to a SQL database. This is what data is currently being returned:

010001 10011259 John Doe No
010001 10011259 John Doe No
010001 10011259 John Doe Y Yes
010001 10011259 John Doe Y Yes

The column with the Y has null values. How can I eliminate John Doe completely from the report, since he has Y?

Thanks.
 
You can use group selection. Go to report->selection formula->GROUP and enter:

isnull(maximum({table.Yfield},{table.personID})) or
maximum({table.Yfield},{table.personID}) <> "Y"

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top