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

How to print parameter values 2

Status
Not open for further replies.
Joined
Jul 24, 2007
Messages
25
Location
US
Crystal Reports 10
I have created a date range parameter in my report and placed it in the page header. Then, using the select expert, I assigned a date field to that parameter.
{tb002_LCRTransRep.TRDAPR} = {?DateRange}

When the report runs, the user is prompted for a date range - Works great.

The ISSUE!
How do I get that range to 'print' on my report. The parameter is in the page header section, but displays nothing (null)-

Thanks,
Marco
 
Try:

"For date range " & minimum({?MyParameter}) & " to " & maximum({?MyParameter})

-k
 
THANK YOU!

I created a new formula with the above code, placed it in the page header and now is printing the parameter values entered by the user:

"For date range " & minimum({?DateRange}) & " to " & maximum({?DateRange})
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top