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

suppress a memo field in the detail section

Status
Not open for further replies.

shukuo

Programmer
Feb 22, 2002
10
US
Hi.

In the detail section, I want to display a memo field only when it has text, I tried to create a formula field to do filter, but I don't see this memo field in the formula editor window. what show I do ?


thanks so much.
 
What version of Crystal Reports are you running? I believe only 9 supports memo fields within a formula
 
Create a SQL Expression to test whether the field is null and base the suppression on that.

In SQL Server you might use:

isnull(table.field,'null')

Then base the suppression on whether this SQL Expression returned the text null.

-k
 
appreciate your help.

will try it out.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top