For example I have 187 records returned and 2 distinct departments for deparment name. I want to display the Distinct Department names concatenated to one string on the Report Header. When I use browse data on the department_name field I get the distinct department names this is what I want the formula to do.
(Something Like)
StringVar DepName;
if not allready in then
DepName := DepName + {Command.department_name} + ChrW (13)
(Something Like)
StringVar DepName;
if not allready in then
DepName := DepName + {Command.department_name} + ChrW (13)