Creating Report from Form?

mapat

Registered User.
Local time
Today, 06:24
Joined
Feb 2, 2007
Messages
176
hello,

Since I am new with Access, I would like to know if it's possible to create a report with information coming from a form (text boxes,etc), and if so how would I do it?

thank you
 
when you say
With information from a form
i'm assuming that 'information' is stored in a table somewhere. If so, your report would simply use that data source.

You can use the report wizard to create a report from a data source.
 
report

shudini,

No, some information is not stored in a table. I just want to create a txtBox (which is not ina table) in a form, and show it on a report.
thanks


when you say i'm assuming that 'information' is stored in a table somewhere. If so, your report would simply use that data source.

You can use the report wizard to create a report from a data source.
 
As long as the form remains opened when you run the report, you can reference a text box on a form from a text box on a report by using this in it's controlsource:
Code:
=Forms!YourFormNameHere.YourTextBoxNameHere
 

Users who are viewing this thread

Back
Top Bottom