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

Parameter/Default Values 1

Status
Not open for further replies.

LizRCD

Technical User
Feb 1, 2005
5
US
Crystal 10 & SQL 8

I am creating two parameters in a report. The first is a customer name. The second is a order name.

I select the table and then the field within that table and I get all my customer names returned. But when I go to my order name field within the same table, Crystal returns a limited amount of order names.

Thanks for your help.
 
Some sample data and expected output would provide a little more insight into the problem. What's in your record selection or formula that uses the parameters?

On the surface, the output is dependent on how you have the record selection set.

Code:
{table.customername} = {?customername} and
{table.ordername) = {?ordername}

This assumes that the order name is directly related to the customer name. Whereas

Code:
{table.customername} = {?customername} or
{table.ordername) = {?ordername}

gets me every row that has either value.

Cheers,
-LW
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top