In the MS Access report, the page count can be displayed using the text box with the following:
= "Page" & amp; Page & amp; "Ka" & amp; Page & amp; However, this is problematic for large reports, since not all pages can open the first page of the access report until formatting (so it is the total number of pages Knows) Ideally, I will only display "Page 123" in the preview, but when the report is actually printed, it will be replaced by "Page 456 of page 123".
> This is probably wishful thinking, but is anyone managed like this?
Access 2007 (you do not point to your version), available through current VVA property And you can change the control source of the page text box:
Open the Private Sub Report_on (Cancel as integer) case. Current Case Case ACCurViewDesign Case Acquireview Overview 'Page # Only PagesSpextbox Controlsource = "Page" & amp; Me.Page Case AcCurViewReportBrowse # for pages # of pages. Page. Com.ControlSource = "Page" & amp; Me Page & amp; "Ka" & amp; Me.Pages Case ACCurViewLayout End Select End Sub
Comments
Post a Comment