Hi,
I have requirement to display Total number of Rows in a Report in Page Header.
I have written the following code in Page header it shows RowCount for the Page only.
=Count(ReportItems!textboxInTableCell.Value)
Can anyone please help on this?
Regards
Raghav
By Total number of reports in the report do you mean the number of rows returned by the Dataset query? If so, add a textbox in your Report Body with the expression =CountRows("DataSet1") with the name of your Dataset in place of DataSet1.
Then refer to this textbox directly in the Page Header.
This should give you the total row count for your Dataset.
-Aayush
|||Thanks aayush,
I used =CountRows() in body header and set the RepeatWith property to "tableName" and it works as Page header.
Regards
Raghavendra
No comments:
Post a Comment