Hello
I used the following code to rank values but the issue I am having is that I cam getting a configuration error on the calc block when I rank more than 25 values(num_value) .ANY idea why?I am not dividing by zero
Here is the code I used
If in1=1 then
i:=1
While I <= num_values DO
rank := nume_values ;
j:=1;
while j<= num_values DO
IF i <> j then
IF array[i][1] >= array[j][1] then
rank := rank -1;
END_IF ;
END_IF;
j := j+1 ;
END_WHILE;
ARRAY[i][2] :=rank;
i :=i+1;
End_IF;
This code is the same as you have suggested .Not sure why i am getting a configuration error when the numbers to be ranked is greater than 25
we are using deltav version 13.3.1
In reply to Matt Stoner:
In reply to Eliyya Shukeir:
Andre Dicaire
In reply to Andre Dicaire: