Specifies whether to evaluate new observations and modified observations against a WHERE expression.
Valid in: | DATA step and PROC steps |
Category: | Observation Control |
does not evaluate added observations and modified observations against a WHERE expression.
evaluates added observations and modified observations against a WHERE expression.
data a; x=1; output; x=2; output; run; data a; modify a(where=(x=1) whereup=no); x=3; replace; /* Update does not match WHERE expression */ output; /* Add does not match WHERE expression */ run;
data a; x=1; output; x=2; output; run; data a; modify a(where=(x=1) whereup=yes); x=3; replace; /* Update does not match WHERE expression */ output; /* Add does not match WHERE expression */ run;