I had a report in Crystal were I built a formula field. The field would display one of two records based on the limit exceeded. I can't seem to figure out how to do the same thing in Actuate. The field was something like this. Any help would be greatly appreciated.
if (measurement.measurementvalue)>=(measurepoint.upperaction)
then (measurepoint.upperaction)
else
if (measurement.measurementvalue)<=(measurepoint.loweraction)
then (measurepoint.loweraction)
I tried putting this in a method OnRow but get the follow (Greek) error.
NewReportApp::Frame::MeasurementMeasurementvalueControl1%OnRow%AcDataRow(5): Actual: [new line] Expecting: '&', '*', '+', '-', '/', '<', '=', '>', '\',
'^', And, BAnd, BOr, Eqv, char 324, Imp, Is, char 338, Like, Mod,
char 362, Or, Then, Xor
1 Error(s) found
if (measurement.measurementvalue)>=(measurepoint.upperaction)
then (measurepoint.upperaction)
else
if (measurement.measurementvalue)<=(measurepoint.loweraction)
then (measurepoint.loweraction)
I tried putting this in a method OnRow but get the follow (Greek) error.
NewReportApp::Frame::MeasurementMeasurementvalueControl1%OnRow%AcDataRow(5): Actual: [new line] Expecting: '&', '*', '+', '-', '/', '<', '=', '>', '\',
'^', And, BAnd, BOr, Eqv, char 324, Imp, Is, char 338, Like, Mod,
char 362, Or, Then, Xor
1 Error(s) found