Skip to Content
0
Former Member
May 28, 2010 at 06:23 PM

printing multiple param - error "parameter has no value" when no value

71 Views

i have this formula to print multiple parameters in the header and it works :

WhilePrintingRecords;

StringVar Array Input := {?param};

NumberVar howmany:= count (Input);

if howmany > 0 then ', ' + Input [1] +

if howmany > 2 then ', *****'

my problem is when the parameter has no value (it means all records) the report stop with the error "Parameter has no value".

in that case i want to print blank field or 'ALL RECORDS'

do you know how ?

thanks

Ricardo