Unbound Label in Report for user input

mdg

Registered User.
Local time
Today, 07:40
Joined
Feb 17, 2011
Messages
68
I have a report that is used as a check of list of sorts for auding purposes. I would like to inlcude a 'Comment area' in the report after each section. I want to be able to type in comments in report view and have these displayed when report is printed. I tried using an unbound Label but will not allow me to type anything in. Is there a way to format a lable or text box that is unbound and can be utilized just inside the report view so someone can add comments etc to the report. THank you all for any info.
 
I think you would need to use a form for this. On the form have a text box for the user to enter their comments then in the report, refer to the text box on the form.

Another possibility is to have some vba code on the report and get the comments from a message box, haven't tried it yet to offer you some code, just an idea at this point.
 
I think you would need to use a form for this. On the form have a text box for the user to enter their comments then in the report, refer to the text box on the form.

Another possibility is to have some vba code on the report and get the comments from a message box, haven't tried it yet to offer you some code, just an idea at this point.


Thanks. I was thinking it would be easier to make a form first then convert it to a report when done if needed. I'll play around with it Thanks so much for your response.
 

Users who are viewing this thread

Back
Top Bottom