I have a need to sum columns in my datastore. The same datastore is used in other places in the report so I don't want to modify it. Here is an example. My datastore has columns business component, role and wages. There are only three rows in this example. Each is for a different employee, business_component, and taxyear. I'd like to have columns in my table business component, research$,support$,superv$,totalresearch$,totalact$
"showFooter"=>"bottom",
"columns"=>array(
"business_component"=>array("label"=>"Business Component"),
"a"=>array("label"=>"research$"),
"b"=>array("label"=>"support$"),
"c"=>array("label"=>"superv$"),
etc
Should I be using piping to create these totals within koolreport?