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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Displaying Parameter 2

Status
Not open for further replies.

Red01

IS-IT--Management
Jul 13, 2001
8
US
I would like to be able to display a parameter in a report (in a report header), in particular, a date range.

Any ideas?

THANKS! Red
 
To display ranges, use:

ToText(Minimum({?DateRange}),'dd MMMM yyyy') + " to " + ToText(Maximum({?DateRange}),'dd/MM/yyyy')
//Choose your own display method by altering the dd/MM/yyyy part.

To display multiple parameters, in v8+, use:

join({your_parameter},', ')

Naith
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top