Array has 200 elements and each element is 30 characters. Array is accumulated in Detail. Printing is in Group Footer and Report Footer. There may be one array element used or 200 used. Printing is via a formula where all the elements defined as shown below:
WhilePrintingRecords;
Global StringVar Array ProductDesc;
Global NumberVar T2;
Local StringVar Array P;
Local NumberVar X;
redim P[200];
For X := 1 To T2 Do
(P[X] := ProductDesc[X] + CHR(13));
P[1]+P[2]+P[3]+P[4]+P[5]+P[6]+P[7]+P[8].......+P[200];
Problem: I get the error stating the the String has exceeded the max of 254 in length. I know that I can "break-down" the above into seperate formulas, but that sure is cumbersome. Any suggestions???
TIA
Ed Mason
WhilePrintingRecords;
Global StringVar Array ProductDesc;
Global NumberVar T2;
Local StringVar Array P;
Local NumberVar X;
redim P[200];
For X := 1 To T2 Do
(P[X] := ProductDesc[X] + CHR(13));
P[1]+P[2]+P[3]+P[4]+P[5]+P[6]+P[7]+P[8].......+P[200];
Problem: I get the error stating the the String has exceeded the max of 254 in length. I know that I can "break-down" the above into seperate formulas, but that sure is cumbersome. Any suggestions???
TIA
Ed Mason