Oct 4, 2010 #1 jleboeuf Programmer Joined May 2, 2001 Messages 50 Location CA Hi, First I'm using CR 11 and what I would like to do is assign a different default value on a parameter depending on a previous parameter choice. Can this be done ? Thanks Jean-Paul Leboeuf jp.leboeuf@ggi-international.com
Hi, First I'm using CR 11 and what I would like to do is assign a different default value on a parameter depending on a previous parameter choice. Can this be done ? Thanks Jean-Paul Leboeuf jp.leboeuf@ggi-international.com
Oct 5, 2010 #2 Madawc Programmer Joined Sep 5, 2002 Messages 7,628 Location GB I'm pretty certain you can't. You can get the same effect, using a formula field that assigns different values on the basis of another parameter. Madawc Williams (East Anglia, UK). Using Crystal 11.5 with SQL and Windows XP Upvote 0 Downvote
I'm pretty certain you can't. You can get the same effect, using a formula field that assigns different values on the basis of another parameter. Madawc Williams (East Anglia, UK). Using Crystal 11.5 with SQL and Windows XP
Oct 5, 2010 #3 lbass Technical User Joined Feb 9, 2002 Messages 32,818 Location US Can you give an example of what you mean? -LB Upvote 0 Downvote
Oct 6, 2010 #4 Madawc Programmer Joined Sep 5, 2002 Messages 7,628 Location GB Something like Code: If @Param2 = "Default" then if Param1 = "Chalk" then "Marble" else if Param1 = "Cheese" then "Chedder" else @Param2 This won't make any difference to what the parameters show, but you can set a default value in the parameters. Madawc Williams (East Anglia, UK). Using Crystal 11.5 with SQL and Windows XP Upvote 0 Downvote
Something like Code: If @Param2 = "Default" then if Param1 = "Chalk" then "Marble" else if Param1 = "Cheese" then "Chedder" else @Param2 This won't make any difference to what the parameters show, but you can set a default value in the parameters. Madawc Williams (East Anglia, UK). Using Crystal 11.5 with SQL and Windows XP