I've come across a program that uses not =
as if it had the same meaning as ne
or ^=
. It seems to work fine, and doesn't raise so much as a note to log. But I can't find any official documentation confirming that this is supported syntax.
Is not =
really the same as ne
?
not =
is what SAS puts in the log at the end of a data step when you use a subsettingwhere
, whether you usene
or^=
. – Jeff