Report Headers

  • Thread starter Secret Squirrel
  • Start date
S

Secret Squirrel

I have a report that I run that is tied to a query. I have to select a month
from the criteria in the query. How can I get this field to show up in the
report header? I want this to be shown on the header so users will know what
month this report was generated from.
 
D

Duane Hookom

Add a text box to your report and set its control source to:
=[Your parameter prompt here]
maybe:
=[Enter Month]
 
R

Ron A.

Place a text box in the header section of your report and type this
expression in the text box: =â€Trasactions fromâ€&[Beginning
Date]&â€Toâ€&[Ending Date]
You can change the text between the quotation marks to what ever you want to
show up on your report. Hope this helps.
 
Top