Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi,
created input box on variable,predefined listed values are present,good,excellent but,
when ever selected present from listed box need to asign value as 0 to varibale,
if in case good selected from listed box need to asign value as 20 to varibale(same variable),
if in case excellent selected from listed box need to asign value as 30 to varibale(same variable).
note:useing that variable to calculate backend calculation on chart accordingly selections from list box.
thanks in advace
You need a second variable to 'translate' the present/good/excellent value into 10/20/30
vSecondVariable: 10*match(vFirstVariable, 'present','good','excellent')