Add signatures at the end of a report

Johanvdw

New member
Local time
, 00:03
Joined
Jun 23, 2025
Messages
6
Hi there,
I need some help with a report (delivery note). I need to put the recipient and his signature at the end (bottom of the page) of the report. Sometimes if have only 1 item to deliver (1 page) and the the receiving part floats to the middle of the page. Sometimes I have a couple of pages of items, and I don't want the receiver to sign on very page, but only on the last page (at the bottom of the page). I hope this make sense and somebody can help me.
 
I have done that, but if the last page is only half full, it still floats to the middle. I want the names, signatures and dates at the bottom of the page. Can this be done?
 
See this link
 
you can do it on the PrintPreview of the report (only).
plus you you will have extra space on the bottom.
see Order report (Detail_Format vba).
 

Attachments

I have done that, but if the last page is only half full, it still floats to the middle. I want the names, signatures and dates at the bottom of the page. Can this be done?

If you put the controls in the page footer you can show them only on the final page with code like this in the page footer's Format event procedure:

Code:
Dim blnShowControl as Boolean

blnShowControl = (Page = Pages)

Me.txtName.Visible = blnShowControl
Me.txtSignature.Visible = blnShowControl
Me.txtDate.Visible = blnShowControl

If you need to keep the page footer smaller on the preceding pages the methods posted above by others allow this.
 
Last edited:

Users who are viewing this thread

Back
Top Bottom