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

string entry to multiple parameter

Status
Not open for further replies.

atarrqis

IS-IT--Management
Joined
Nov 26, 2004
Messages
155
Location
US
Oracle and CR11

I have a parameter = {?Contract} that is set to allow multiple entries
The user could enter * for All or 20203 for only one Contract. This all works fine.
The user could enter a string that may look like 20203;204;2001 (etc.)
and I want Crystal to read this as multiple entries
20203
204
2001
The semi-colon will always be the seperator.
 

This should do the trick:

{Table.Contract} in join({?Contract},";")

 
That worked - just too simple to see it. Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top