That didn't work. I have a page footer with the page numbers already. That still prints at the bottom. When I added the textbox to the report footer, it printed right after the last record (in the middle of the page).
oh, sorry, i misunderstood. anything you want to print at the bottom of the page has to be in the page footer. report footer will always show up after the last record, as far as i know. i've been working with access reports for 4 years, now.
possibly you could add code to the report footer's on format event:
if me.[page].value = me.[pages].value then
hiddenTextbox.visible = true
hiddenTextbox.value = "whatever text you want here."
end if
and set the hidden textbox's canShrink value = true
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.