If you're a total newbie, you probably need to read my free online chapters to get the full details of how to do some of these tricks in CR.
To concatenate data, create a string variable and use the & to join multiple fields together. Create a new formula and put code similar to the following in it (change the table and fields for your purposes).
StringVar AllRules;
AllRules := {table.Rule1} & ", " & {table.Rule2} & ", " & {table.Rule3};
Edited by BrianBischof - 19 Jun 2007 at 8:26pm