Question : Dont display record if string field is blank/null

Hi there...

I ve got a report that sometimes, in the detail section, shows a record which one of his fields,sometimes, can be  blank/null.

What id like is not to show the record at all if that field is null. Also if the field is null and there is only one record, in the detail section, I dont want to display the footer for that group either.

Any thoughts???

Ta!!

Answer : Dont display record if string field is blank/null

To suppress the footer I have 2 ideas.

1.  Use the select expert to not select those records
   Not IsNull({YourField})

2.  Use a formula
   If IsNull({YourField}) then
       0
   Else
       1

Suppress the gorup footer with
   Sum({@NewFormula},{GroupField}) = 0

The Test above in the section expert needs to be

IsNull({YourField})

mlmcc
Random Solutions  
 
programming4us programming4us