I am using CR10
The following is a thread from couple of days ago as its not quite working when I setup formula for 'missing' data and I am desperate for a solution
So in example below I need to allow for 25 names in Group A, 15 Group B, 15 Group C and 5 Group D for instance,
Group A
aul Pindar,Gordon Hurst,Clare Waters,Simon Mayall,,,,,,,,,,,,,,,,,,,,,;
Group B:John Eary,Kristian Jewitt,Costas Demetriou,,,,,,,,,,,,;
Group C:,,,,,,,,,,,,,,;
Group D:,,,,;
I set up many individual formula as suggested eg GroupAName5
StringVar Array MandateText;
StringVar result;
MandateText:=Split({@GroupA},",");
result:=MandateText [5]
@GroupA is extractstring({T329.F329C},"Group A:",";") and I have also setup @GroupB C and D
For GroupAName 1 to 4 it works great as there are names in the string but for the next one I get following msg:' A subscript must be between 1 and the size of the array'
Bit baffled, if I put in an x in the number 5 position it still doesnt work, I have no idea what is going on and never used arrays before
The following is a thread from couple of days ago as its not quite working when I setup formula for 'missing' data and I am desperate for a solution
So in example below I need to allow for 25 names in Group A, 15 Group B, 15 Group C and 5 Group D for instance,
Group A
Group B:John Eary,Kristian Jewitt,Costas Demetriou,,,,,,,,,,,,;
Group C:,,,,,,,,,,,,,,;
Group D:,,,,;
I set up many individual formula as suggested eg GroupAName5
StringVar Array MandateText;
StringVar result;
MandateText:=Split({@GroupA},",");
result:=MandateText [5]
@GroupA is extractstring({T329.F329C},"Group A:",";") and I have also setup @GroupB C and D
For GroupAName 1 to 4 it works great as there are names in the string but for the next one I get following msg:' A subscript must be between 1 and the size of the array'
Bit baffled, if I put in an x in the number 5 position it still doesnt work, I have no idea what is going on and never used arrays before