How can I remove the “(COUNT)” text that is appended to the column header captions in reports?
Assume you’re using Summary Report, then simply put the following code in Page_Load server event under Server Events → Table-Specific → Summary Report:
Language()->setPhrase("RptCnt", " ");
Language()->setPhrase("AggregateEqual", " ");
A post was merged into an existing topic: How to remove (COUNT=…) from column header caption in reports completely?