Printing a report from a unboound form (how to)

S

skulmat

I am trying to print information off of a form that i am using like a
calculator, I would like ti be able to print it nicely laid out like from a
report. But the problem is that not of the information in he "calculator
form" gets saved/stored anywhere. None of the fields have a are bound to
anything. I would like to set up a command button to print it out.

thankx
 
R

Rick B

You can pull information to a report from an unbound field on a form. It
does not have to be saved.
Just add an unbound field to your report and put something like the
following in it...


=Forms![SomeFormName]![SomeFieldName]




Note that the form must be open when you run the report.

Rick B
 
Top