How to find min,max,mean for a field

bavani_umabavani_uma Member Posts: 9
Hi,

In the form i have option global variable with option minimum,maximum,Average and a textbox to dispaly a result.

Based on the option it should calculate the min,max,mean of the RESULT field and display it in the textbox..

In the OnValidate trigger of the option textbox i wrote the following code


IF View = View::Minimum THEN
SETFILTER(Result,'%1',Result);
"Row Result":=GETRANGEMIN(Result);
IF View = View::Maximum THEN
SETFILTER(Result,'%1',Result);
"Row Result":=GETRANGEMAX(Result);


But its showing me the error:

Please specify a filter for the result field in the Table.

Then how should i do for mean... Is there any default function availabe


Please help..

Comments

Sign In or Register to comment.