Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Does anyone know how to dynamically

Status
Not open for further replies.

mischief911

Technical User
Jan 14, 2002
21
US
Does anyone know how to dynamically update a Report Title with the Date Range used for the Report Parameters? I am creating a report with a date range parameter (report date is a date range, not a discrete value) which I would like to display in the Report's Title.
 
I'm not sure what function you are using, but try something like this:

minimum(LastFullWeek)

If this doesnt work it might be helpful to know what function you are trying to parse.

Jason
 
something like this should work

"Weekly Range: " +
Totext(minimum({?dateRange}),"yyyy/MM/dd") + " to " +
Totext(maximum({?dateRange}),"yyyy/MM/dd") + " to " ;

hope this helps...Jim
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top