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

Suppress if Records are Not Null 3

Status
Not open for further replies.

dunkyn

Technical User
Apr 30, 2001
194
0
0
US
I have a text field in a group footer and I want to suppress the section if my group number or category name is NOT null.

(I am trying to get a work around to display group names if there are no records to display because I have an equal join and not a left outer join.)

Is there a formula for ISNOTNULL()?
 
If it were possible, it would be

not(isnull(some.field))

Crystal won't allow you to group on something that isn't there.

Mike
 
Thank you both.

And, Mike, I'm glad you understand what I am trying to do.

I have additional footers will fake text headings, but I just can't get the selection statements down so that the headers appear when there are no records for that particular category. Looks like I've hit a deadend.
 
Just what I needed. THANK YOU!!!
 
I need to suppress a field if the data returned is null.
How can i do this?
 
In your conditional suppression editor (right click your field, select format, and click the X+2 button next to Suppress), enter
Code:
IsNull({YourField}) or {YourField} = ''
. Only use the "or {YourField}" part of the formula if your field is a string field.

Naith
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top