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

Prompts problem

Status
Not open for further replies.

KeertanaCR

Programmer
Oct 11, 2006
68
US
HI ALL,

I have a staic prompt, which selects A,B,C,D. and Now i want an additional static prompt, if the selection of earlier prompt is A. Is this possible using Crystal Reports XI

Thank you
 
You can set up a second parameter {?parm2}, and then use a record selection formula like:

(
select {?parm1}
case "A" : {table.field} = {?parm2}
)

The user would have to select a value for {?parm2} even if {?parm1} was not "A", but it would not result in any filtering. To make this sensible for the user, you can create an option "None" and then direct the user to select this option for {?parm2} if {?parm1} is not equal to "A".

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top