I'm using Crystal X and I am trying to create the option ALL in my parameter. My parameter is 1,2,3,4,5 How do I select all of them without clicking on each one?
Is your parameter a string or a number datatype? If it is a string, then add an option "All" to the picklist, choose "allow multiple values" and then go to report->selection formula->record and enter:
(
(
{?Parm} <> "All" and
{table.field} = {?Parm}
) or
{?Parm} = "All"
)
If it is a number, then add a value option 0 with a description field of "All" and then also add the other picklist options as description fields. Then choose "true" for "show description field only", and allow multiple values. Then set up your formula like this:
(
(
{?Parm} <> 0 and
{table.field} = {?Parm}
) or
{?Parm} = 0
)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.