Question : Splitting Comma Separated Values

I was wondering is it possible to take a Comma Separated Value and split it directly within the Crystal Report?

Answer : Splitting Comma Separated Values

As Jay stated yes you can.

The SPLIT function converts the list into an array of values.   The array will be a string array

You use it as

StringVar Array myNumbers;
myNumbers := Split({YourField},',');
''

To get at individual numbers you can use
StringVar Array myNumbers;
myNumbers := Split({YourField},',');
myNumbers[3]

mlmcc
Random Solutions  
 
programming4us programming4us