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

Date Parameters

Status
Not open for further replies.

kristinaloupe

Technical User
May 12, 2004
31
US
Does someone know......What is the formula I would use to display the dates I choose in the parameter for the report header?

The join functions works only on strings.

Thanks,
Kristina
 
Try:

"From: " + ToText(Minimum({?DateRange}), "dd/MM/yyyy")) + " to " + ToText(Maximum({?DateRange}), "dd/MM/yyyy"))

-dave
 
But.. this did... giving me "From: 3/1/2005 to 4/12/2005"

"From: " + ToText(Minimum({?Between What Dates?})) + " to " + ToText(Maximum({?Between What Dates?}))

Thanks for the tip .. got me going!

Kris
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top