If your parameter is set up as a Range, and the Report Title is saved
with the report file, then try this formula:
ReportTitle + " " + ToText(Minimum({?DateRange}), "d-MMM-yyyy") + " to "
+ ToText(Maximum({?DateRange}), "d-MMM-yyyy");
If you don't have the report title necessarily saved with the report,
create the formula like this, then drag it onto the report canvas next
to the Title:
ToText(Minimum({?DateRange}), "d-MMM-yyyy") + " to " +
ToText(Maximum({?DateRange}), "d-MMM-yyyy");
If you're not using a Range parameter, but are using two separate Date
params:
ToText({?BeginDate}, "d-MMM-yyyy") + " to " + ToText({?EndDate},
"d-MMM-yyyy");
-dave