thatgirlinMS
Programmer
I have some formulas that are populating a string variable with detail data into one fat string. No matter how I seperate the values (*,/~) only the first value is exported in csv format. I am exporting my values | delimited....any ideas? Below are my formulas.
1) In the Group Header place the @reset formula:
WhilePrintingRecords;
StringVar chain := '';
NumberVar ChCnt := 1
2) On the Details place the @Accum formula, putting your field into the second line:
WhilePrintingRecords;
StringVar Item:= {Axis1.code};
StringVar Chain;
NumberVar ChCnt;
if ChCnt = 1 then (ChCnt:= 2; chain := Item)
else
chain := chain + '*' + Item
3) On the Group Footer place the @Display formula:
WhilePrintingRecords;
StringVar Chain
1) In the Group Header place the @reset formula:
WhilePrintingRecords;
StringVar chain := '';
NumberVar ChCnt := 1
2) On the Details place the @Accum formula, putting your field into the second line:
WhilePrintingRecords;
StringVar Item:= {Axis1.code};
StringVar Chain;
NumberVar ChCnt;
if ChCnt = 1 then (ChCnt:= 2; chain := Item)
else
chain := chain + '*' + Item
3) On the Group Footer place the @Display formula:
WhilePrintingRecords;
StringVar Chain