Would the latter one be a bit better for performance? $#kobostatus is enumerated.
Code:
program:
if $#kobostatus=='[Send to Device]' then 'No'
elif $#kobostatus then 'Yes'
fi
Code:
program:
if $#kobostatus
then
if $#kobostatus == '[Send to Device]' then 'No'
else 'Yes'
fi
fi