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

Suppressing alpha fields

Status
Not open for further replies.

crystalwriter

Technical User
Sep 24, 2003
6
US
How do you suppress an alpha field when it is empty, and display it when populated.
 
If the field is empty, it won't display anything. Just place the field on the report.

If however you are trying to not display any records of the database when a certain alphanumberic field is empty, use a record selection formula:

Not isnull({YourAlphaField}) or length(trim({YourAlphaField}))>0

the second part of code above will cover you in case the field is not null but contains blank spaces.

Software Sales, Training, Implementation and Support for Exact Macola, eSynergy, and Crystal Reports
 
That's not exactly what I meant. I have address fields that have six fields on the detail line. Say, if number 4 does not have data I want the field and the row to supress. But I think my problem is I have all six fields in the detail section?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top