RobertWild wrote:
Hence, the formula that I've come up with using the Sum (Fld, CondFld, Cond) argument is:
Sum ({@Copy Count},{CnAdrPrfAtrCat_1.CnAdrPrfAtrCat_1_Description} , "On Campus")
however this is returning an error that the summary / running total field could not be created.
The Sum(Fld, CondFld, Cond) function isn't appropriate here. In order to use either Sum(Fld, CondFld) or Sum(Fld, CondFld, Cond), you have to have a group on CondFld. In addition, the Sum(Fld, CondFld, Cond) version is only applicable to Date, DateTime, or Boolean Fields and is used to specify the particular level of change (such as monthly or weekly) in the CondFld.
What you probably want to do instead is use IF...THEN...ELSE in your conversion formula. So you probably want something like
IF {CnAdrPrfAtrCat_1.CnAdrPrfAtrCat_1_Description} = "On Campus"
THEN CDbl(<your attribute comment field here>)
ELSE 0
Then you would want to use the standard summary features of Crystal to get the total.
Much of this is contained in the Crystal Help files. If you're not sure what a formula does, check the help files. You should also think about getting training.
Drew