Hi,
I'm using CR10 and CE10.
I have a simple array to get summary data, but the way it display on report seems different with regular numeric data.
e.g.
My numeric data should display as below:
100
0
100-
My Array formula:
StringVar Array Split_LossPaid := [100, 0, -100];
Join(Splie_LossPaid, chr(13));
display on report:
100
0
100-
I understand I need to use string to display array, but when I try to manage to display it as numeric value by adding space behind the postive value, it doesn't work.
If I can not display as numeric value, I may have to change to using subreport which is not good choice regarding performance concern.
Any other ways to workaround it?
Thanks,
Ted
I'm using CR10 and CE10.
I have a simple array to get summary data, but the way it display on report seems different with regular numeric data.
e.g.
My numeric data should display as below:
100
0
100-
My Array formula:
StringVar Array Split_LossPaid := [100, 0, -100];
Join(Splie_LossPaid, chr(13));
display on report:
100
0
100-
I understand I need to use string to display array, but when I try to manage to display it as numeric value by adding space behind the postive value, it doesn't work.
If I can not display as numeric value, I may have to change to using subreport which is not good choice regarding performance concern.
Any other ways to workaround it?
Thanks,
Ted