Does anyone know a better way to solve the following issue??
I want to able to display the date range value my report is using when printing a copy of the report. I've tried the following:
"From: " & Minimum ({?Dates}) & " To: " & Maximum({?Dates})
But I don't think this is the best way to go. What's gonna happen here is that if your maximum date falls behind the "ToDate" parameter entered, when you print out your report it will be confusing for someone not familiar with the dates entered as parameters.
Example:
Dates entered as parameters:
From 10/01/02 to 10/31/02
Actual maximum date in data: 10/20/02
actual minimum date in data: 10/01/02
Thus, we'll get:
From: 10/01/02 To: 10/20/02
Is there a way to display the exact date range used in this case?? Thanks in advance.
I want to able to display the date range value my report is using when printing a copy of the report. I've tried the following:
"From: " & Minimum ({?Dates}) & " To: " & Maximum({?Dates})
But I don't think this is the best way to go. What's gonna happen here is that if your maximum date falls behind the "ToDate" parameter entered, when you print out your report it will be confusing for someone not familiar with the dates entered as parameters.
Example:
Dates entered as parameters:
From 10/01/02 to 10/31/02
Actual maximum date in data: 10/20/02
actual minimum date in data: 10/01/02
Thus, we'll get:
From: 10/01/02 To: 10/20/02
Is there a way to display the exact date range used in this case?? Thanks in advance.