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

String Array from Parameter 2

Status
Not open for further replies.

terenceb

Programmer
Jun 10, 2003
77
US
Hi,

I am using Crystal 8.5 pulling data from a Cashe database.
I am using a parameter to select several staff names ?staff name. I need to put those names into an array to be displayed in a document. How do I start?
 
Naith,

Thank You, That worked. I used Join({?YourParameter},"/ ")
instead because my staff names have "," already. I have a formula that will correct the format of the name. But how do I piece out the names and display them with a carriage return after each name?
 
You could use:

Join({?YourParameter},chr(13))

Then format the formula to "can grow".

-LB
 
Thanks that hit the spot. It was exactly what I needed.
 
Bookmark my FAQ:

faq767-5684

It handles this as well as more complex requirements.

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top