madvalpreston
Technical User
Hi
We presently are running Vantage V8 through Progress. We create BAQ (business queries) and link these into Crystal reports (using V1). In general this works perfectly.
However the report we have been working on, shows the information in the report perfectly, but when we run it form our Vantage system the label information does not come through.
We have tried many things with the formula below (this is crystal report syntax )but we cannot get it view.
If we just add the label field it shows (but no formatted in a way that is suitable.
The formula below is what we are using.
stringvar array x := split({BAQReportResult.Memo.MemoText},chr(13));
if ubound(x) >= 3 then
"Die No: "+x[1]+" "+"Lot No: "+x[2]+chr(13)+chr(13)+
"Heat No: "+x[3]
Does anyone know if Progress as problems with any of the commands below. We thought it may be the split command but when we tried other options we still got the same problem.
Any ideas please. Thanks
We presently are running Vantage V8 through Progress. We create BAQ (business queries) and link these into Crystal reports (using V1). In general this works perfectly.
However the report we have been working on, shows the information in the report perfectly, but when we run it form our Vantage system the label information does not come through.
We have tried many things with the formula below (this is crystal report syntax )but we cannot get it view.
If we just add the label field it shows (but no formatted in a way that is suitable.
The formula below is what we are using.
stringvar array x := split({BAQReportResult.Memo.MemoText},chr(13));
if ubound(x) >= 3 then
"Die No: "+x[1]+" "+"Lot No: "+x[2]+chr(13)+chr(13)+
"Heat No: "+x[3]
Does anyone know if Progress as problems with any of the commands below. We thought it may be the split command but when we tried other options we still got the same problem.
Any ideas please. Thanks