vote up 0 vote down star

I have this crystal report, and I want to be able to use it to display every person in the table or display only those who owe money.

The parameter is called displayAll and is a boolean. Basically I want this

if displayAll Then
   Show every person
else
   Show only When Balance is below 0

How can I do this?

flag

1 Answer

vote up 2 vote down check

In your Record Selection Formula, say something like:

If {?DisplayAll} Then
    True
Else
    {Data.Balance} < 0;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.