Print

  • Thread starter Thread starter Taher
  • Start date Start date
T

Taher

Hi there

I want to print a text box(memo feild) at the end of every
report.

I would appreicate if somebody would help me on this.

Thank you.
 
Taher said:
I want to print a text box(memo feild) at the end of every
report.


Where is this memo field?

If it's in a single record table, then use DLookup in the
text box's control source expression to retrieve it:

=DLookup("memofield", "thetable")
 
Back
Top