Hi,
Version: Crystal XI
I am using an array to gather log ids. But when I run a report with wider search criteria I get an error - Error: String can be at most 65534 characters.
How can I get rid of this error? Below is my formula
Thanks!
-ES
Version: Crystal XI
I am using an array to gather log ids. But when I run a report with wider search criteria I get an error - Error: String can be at most 65534 characters.
How can I get rid of this error? Below is my formula
Code:
WhilePrintingRecords;
Global StringVar Array_Name;
numbervar slno;
Array_Name:= Array_Name & Cstr({PMP.LOG_ID}, 0) & ",";
if {@TimelyComplete}= 0 then
slno:= slno+ 1;
Thanks!
-ES