Link to home
Start Free TrialLog in
Avatar of Star79
Star79Flag for United States of America

asked on

Display Parameter Description for a Crystal report

Is there a way to display the parameter description for a crystal report.
iam using Crystal XI
Avatar of Mike McCracken
Mike McCracken

What do you mean by the parameter desciption?

Generally the description is another database field and can be displayed just by including it in the field selection and putting it on the report.

If you are providing all the parameter values and descriptions, I don't think you can display the description.

If you don't hve too many values and values aren't added, you could create a formula to test the value then display the apropriate value

If {?param} = 1 then
    "Desc1"
Else If {?param} = 2 then
    "Desc2"
Else etc


mlmcc
Avatar of Star79

ASKER

sorry mlmcc,
If I have a parameter which is dynamic example facilityid and facilityname.
Facilityid is the value and facname is the description. So how to display the facname in the report.The data is coming from a subreport.
Thanks
ASKER CERTIFIED SOLUTION
Avatar of Mike McCracken
Mike McCracken

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial