Hi ,
I have a value prompt in which the values are,
E-Exceeds exp
N-Needs Improvement
O-Outstanding
P-Proficeint
these are coming through some condition like in the data item like,
if (ABC='O') then ('Outstanding')
else if (ABC='P') then ('Proficeint') etc.
Now my requirement is i need this in a way as shown below.
O-outstand
E-Exceeds Exp
P-Proficeint
N-Needs Improvemnet
Please let me know.
Thanks in Advance.
create new calculation like :
if (ABC='O') then (3)
else if (ABC='P') then (4) ...
and set value prompt sorting property to that new calculation
Thank you very much for the response. It worked fine.
Thanks,
Sg