I'm adding UPS/ FedEx tracking numers to orders as a subreport. My tracking numbers come back vertically in a column. how can i get them to populate horizontaly in a row?
Here's one way you can do this:
you'll need three formulas
In the report header (which is suppressed) place formula {@init}
shared stringvar trnums := ' '
In the detail section (which is suppressed) place formula {@bump}
shared stringvar trnums;
trnums := trnums +{table.trackingnumber}&" "
In the group footer A place formula {@sho track}
shared stringvar trnums
In group footer B (suppressed) place another copy of {@init} (this may not be necessary if you're calling the subreport once per group, but it won't hurt)
Thanks Charliy, that worked. What exactly did you have me do? I'm not an advanced Crystal user.
Now I just need to get my tracking numbers to be clickable again.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.