Hi again.

Actually, although there is no way to actually insert the selection criteria into your report, there is a way to get the range of dates to print on your report.

You must create 2 formulas, 1 using the Minimum & 1 that uses the Maximum function. To do this:

1. Insert two Grand Totals for the field, one using Minimum and one using Maximum.
2. Create a formula with the desired text. For example, for a date field:
"This report contains transactions dated from " + ToText (Minimum({AR65A Current Customer Transactions.Documentdate})) + " to " + ToText (Maximum ({AR65A Current Customer Transactions.Documentdate})).

The only catch to this is that it will only report the highest and lowest values it encounters. If the selection formula specifies a date that does not actually appear on the report, the date range may appear to be inaccurate.

Sorry I had forgotten about this earlier.