Normally, we show label horizontally. Is there a way to make the label rotate counter-clock 90 degree? I check yes for property Vertical, but it turns clockwise instead.
One more thing is there a way to sum amount on each page?
To calculate totals I prefer to do the calculation manually. A simple version of this would be if your report had details, no grouping footers, but just a report footer and page footers and you wanted to print the total on each page of what was printed on that page and also print the grand total(s) for the report on the report footer. Here's how I do it, assuming one column with data in the details section of the report in the control txtValue:
In the VBA code for the report, define variables for use in the entire report. I'll call them dblValuePageTotal and dblValueReportTotal.
In the VBA code for the report header put the following:
dblValueReportTotal = 0
In the VBA code for the page header put the following:
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.