9Aug/102
SAS: Where Also
Ever heard of 'where also'? Neither did we.
We have to give credit to the guys at the SAS Community.
'Where also' allows you to add a series of where statements. The use acts like a single where statement with the and condition.
Example:
Data new_data;
set old_data;
where number=6;
where also another_number=.;
run;
This is the same as where number=6 and another_number=.