I am new to Crystal and need to do the following:
I have a field that contains 3 values for each row. For example:
1 Start sysadmin
2 Write wr1
3 End sysadmin
4 Start sysadmin
What I want to do is to pull out the second value to display on the report (i.e., Start, Write, End, Start). One value per row.
I setup the following formula:
Local StringVar Owner;
Local StringVar Array OwnerArrayVar;
OwnerArrayVar := Split ({Project.Current_Routing}, " ");
Owner = (OwnerArrayVar [2]);
What I get back is "True" for some of the rows and blank for the rest.