Link to home
Start Free TrialLog in
Avatar of mowit
mowit

asked on

Split Function to display entire Array

I have a string that is delimited by the char "*", I would like to populate an array using the split function and display the entire array vertically within a different section of my report. This is what I have done thus far.

Detail section
Shared StringVar Array aryDesc;
aryDesc := split({Somefield.text}, "*")

Open in new window


How do I display the entire contents ?
ASKER CERTIFIED SOLUTION
Avatar of peter57r
peter57r
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mowit
mowit

ASKER

Is there a way to limit the number of results per page ?
Not with that method.

How many do you want displayed on a page?

mlmcc