31 %let Value=9.1;
32 %let Add=5.1;
33 %let Newval_4=%eval(&Value/&Add);
ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric operand
is required. The condition was: 9.1/5.1
34 %put Newval_4 = &Newval_1;
Newval_4 = 1
39 %let Newval_4=%eval(&Value+&Add);
ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric operand
is required. The condition was: 9.1+5.1
40 %put Newval_4 = &Newval_1;
Newval_4 = 1