I have a few null values in a database field called {Asgnment.Resolution}. On my report, I have a few other database fields going across the report. How do I suppress the other fields if my {Asgnment.Resolution} field has a null value? Thx.
You can suppress these fields with a right click on the field, select format field, hit the x-2 button to the right of the "suppress" checkbox on the comman tab and enter a formula - IsNull({YourField}).
However this will leave blank spaces on the report, and any suppressed records wuill still evaluate in any sub or grand totals you have.
You probably want to exclude these records from your report altogether with a record selection formula. Software Sales, Training and Support for Macola, Crystal Reports and Goldmine
dgilsdorf@mchsi.com
You can suppress these fields with a right click on the field, select format field, hit the x-2 button to the right of the "suppress" checkbox on the comman tab and enter a formula - IsNull({YourField}).
However this will leave blank spaces on the report, and any suppressed records will still evaluate in any sub or grand totals you have.
You probably want to exclude these records from your report altogether with a record selection formula. Software Sales, Training and Support for Macola, Crystal Reports and Goldmine
dgilsdorf@mchsi.com
Right click the section you wish to suppress if one field is null, select format section->X-2 next to suppress and place something like:
isnull({Asgnment.Resolution})
Leaves no spaces, it just eliminates that section if the field is null.
As dgillz mentions, you're porbably better served to eliminate the data from the return set by using Report->Edit Record Selection->Record and placing something like:
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.