PDA

Click to See Complete Forum and Search --> : [RESOLVED] Inserting Printed Parameter Values in CR 10 Report?


blakemckenna
May 7th, 2009, 11:31 AM
I have a Crystal Report 10 in which the user supplies a date parameter (date range consisting of 2 date values entered). These values need to be printed on the report and I can't get them to show up on the report. I have dragged the parameter field onto the report and it just doesn't print a value. What am I doing wrong?

Thanks,

brucevde
May 7th, 2009, 11:56 AM
If a Parameter contains Range Values, use the Minimum and Maximum functions to get the lower and upper bounds of the range.

You will need to create another formula. Here is a formula sample that is printed on a page header from one of my reports.

"For all Orders from " + ToText(Minimum ({?OrderDates}),"dd-MMM-yyyy") + " To " + ToText(Maximum ({?OrderDates}),"dd-MMM-yyyy")

blakemckenna
May 7th, 2009, 12:08 PM
Thanks Bruce...that worked great!