I have a report with 2 columns of data, a species name and a grade name. A species can have many related grades, like this:
SPECIES GRADE
------- -----
DF 1SM
DF 2SM
DF 3SM
DF 4SM
I would like to see the data like this instead:
SPECIES GRADES
------- ------
DF 1SM, 2SM, 3SM, 4SM
Is there a simple way to do this in CR? can i create a string variable, concatenate each grade to it in a hidden details section, and print it as shown in a group footer based on the change of species name? any help on this would be appreciated.
here is the querey used to get the data:
select 'SName'=S.name, 'GName'=G.name
from spgr
JOIN species AS S on (spgr.speciesrec = S.rec)
JOIN grade AS G on (spgr.graderec = G.rec)
order by S.name, spgr.rank
TIA Ruairi
Could your manufacturing facility benefit from real time process monitoring? Would you like your employees to be able to see up to the minute goal and actual production?
For innovative, low cost solutions check out my website.
SPECIES GRADE
------- -----
DF 1SM
DF 2SM
DF 3SM
DF 4SM
I would like to see the data like this instead:
SPECIES GRADES
------- ------
DF 1SM, 2SM, 3SM, 4SM
Is there a simple way to do this in CR? can i create a string variable, concatenate each grade to it in a hidden details section, and print it as shown in a group footer based on the change of species name? any help on this would be appreciated.
here is the querey used to get the data:
select 'SName'=S.name, 'GName'=G.name
from spgr
JOIN species AS S on (spgr.speciesrec = S.rec)
JOIN grade AS G on (spgr.graderec = G.rec)
order by S.name, spgr.rank
TIA Ruairi
Could your manufacturing facility benefit from real time process monitoring? Would you like your employees to be able to see up to the minute goal and actual production?
For innovative, low cost solutions check out my website.