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

memo fields

Status
Not open for further replies.

eguthrie

Programmer
Nov 30, 2001
51
US
In the record selection formula, I need a way to filter out records that have specific text entered in a particular database field. But the database field I'm looking at is a memo field, which can't be used in Crystal formulas.

Does anyone know of a way around this?

Thanks.
-Evelyn




 
Dear Evelyn,

If it is always only this value that you will want to test for, probably the easiest is to add a field to the database that checks to see if the value is there and indicates a Y/N.

As far as I know, the only way a memo field can be used in an actual formula is if you are checking for nulls as in:

Isnull({MemoField})

You have to manually type the field in as it will not show up in the field list in the formula editor!

ro Rosemary Lieberman
rosemary@microflo.com, Microflo provides expert consulting on MagicTSD and Crystal Reports.
 
Unfortunately, you can't really get around the memo issue within Crystal Reports directly:-(

You can, however, base your report on a View, Crystal Query or Stored Procedure that excludes these records in its 'Where' clause.

Hope this helps!
 
Thanks to everyone for their helpful responses. I'm probably going to change the report to base it on a view that excludes the records I want filtered out.
-Evelyn
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top