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!

unexpected error message

Status
Not open for further replies.

mamba74fr

Technical User
Oct 31, 2004
12
GA
Hi all,

Is there possible to make a select record in CR10 by that way :

@selRecord
if table.status = "OK" and date(table.date) = "10/25/05"
then print table.location
else "" ;

What is wrong with that function 'cause it prompts me an error and don't show the expected result.

Any help !

Thx
 
please post the error message verbatim to the forum.

Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports
 
Hi,
I do not think the 'print' is correct in that context.

Try:

@selRecord
if ({table.status} = "OK" and date({table.date}) = "10/25/05")
then
{table.location}
else
""


[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top