The formula in the format field - Display string in a crosstab is:
stringVar Result;
Numbervar AfterDistribution;
whileprintingrecords;
AfterDistribution:= currentfieldvalue - val({@DistributionAmount});
Result:= TRIM(totext(currentfieldvalue,1))+ CHR(13) +TRIM(totext(AfterDistribution,1));
Result;
For some reason the carriage return is not effective. It is not forcing the second field to print on a new line.
Any thoughts?
Thank you for your help in advance,
stringVar Result;
Numbervar AfterDistribution;
whileprintingrecords;
AfterDistribution:= currentfieldvalue - val({@DistributionAmount});
Result:= TRIM(totext(currentfieldvalue,1))+ CHR(13) +TRIM(totext(AfterDistribution,1));
Result;
For some reason the carriage return is not effective. It is not forcing the second field to print on a new line.
Any thoughts?
Thank you for your help in advance,