Page 1 of 1

How to remove (SUM) from column header caption in reports

Posted: Wed Jan 29, 2020 1:32 am
by mkweiss

How can I remove the "(SUM)" and "(AVG)" text that is appended to the column header captions in reports?


Re: How to remove (SUM) from column header caption in report

Posted: Wed Jan 29, 2020 1:58 am
by sticcino

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"," ");

Re: How to remove (SUM) from column header caption in report

Posted: Wed Jan 29, 2020 3:27 am
by mkweiss

That worked, Thanks!. Except the parentheses "()" still show up after the column header. Any work-around for that?


Re: How to remove (SUM) from column header caption in report

Posted: Wed Jan 29, 2020 9:26 am
by arbei

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).