How can I remove the “(SUM)” and “(AVG)” text that is appended to the column header captions in reports?
clear out the following in your page_load event of the reports
$GLOBALS["Language"]->SetPhrase("rptsum","");
$GLOBALS["Language"]->SetPhrase("total","");
$GLOBALS["Language"]->SetPhrase("aggregatecolon","");
$GLOBALS["Language"]->SetPhrase("summarycolon","");
$GLOBALS["Language"]->SetPhrase("aggregateequal"," ");
That worked, Thanks!. Except the parentheses “()” still show up after the column header. Any work-around for that?
Right click the HTML element in your browser and select “Inspect” (assume Chrome), check the id or class of the element, then just add your own CSS under HTML > Styles > User to hide them (e.g. display: none).