if you want to process all the selected parameter values, you need to check the array. It is the same name, it is now just an array.
if you want to check if a value is in the array, you can use the IN function, like:
if "xxx" in {?Award} then....
if you need to process each value, you will need to loop. I would think you can use a FOR loop like:
local numbervar ind;
local numbervar dne := ubound({?Award});
for ind := 1 to dne Do
(//process using {?Award}[ind] style notation.
);
I'm not sure that you can the value of the array member...I don't see why not, but I'm not sure as I haven't tried this myself.
HTH
Edited by lockwelle - 08 Feb 2012 at 3:19am