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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Conditional Suppressing

Status
Not open for further replies.

Shloimy

Programmer
May 11, 2001
9
0
0
US
I have records coming from a SQL stored procedure. In my report I want to suppress the details section if the first two fields are the same. So if it looks like this:

12:00 John Doe sdfsadfsd
12:00 John Doe aaaaaaaaa

I dont want to see the second record.

How can I do this?

Please help!
 
Put the condition in the record selection formula like :

not (previous(field1) = field1 and previous(field2) = field2)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top