Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

does Sas provide mechanism of chain-expressions?

does Sas provide mechanism of In-clause?

Simple examples:

  a = '09MAY2010'd;
  b = '17MAY2010'd;

if (a<=c<=b) then do; /*code*/ end;
if (c in (a:b)) then do; /*code*/ end;

maybe any good techniques of if/where statements?
your suggestions and advises, please.
Thanks!

share|improve this question
thanks! i've cleared my misknowledge – loldop Jul 3 '12 at 12:48
1  
if you figured it out, you should post and answer to your question. – Banjer Jul 3 '12 at 12:57

1 Answer

up vote 2 down vote accepted

Your example, changed a bit:

data _null_;
    a = '09MAY2010'd;
    b = '17MAY2010'd;
    c = '17MAY2010'd;

    if (a<=c<=b) then do;
        putlog "a<=c<=b";
    end;

    select (c); 
        when (a, b) putlog "in a, b";
        when ('17MAY2010'd) putlog "'17MAY2010'd";/* not used, only first match is executed */
        otherwise;
    end;

run;

IN operator used with IF or in WHERE clause requires constants in the list.

share|improve this answer
good one, but what about second one? (c in (a:b)) am i right, that i can't use IF-statement with range, only IF each border of range is constant? – loldop Jul 3 '12 at 13:49
not sure what you mean: if (a<=c<=b) is effectively reference to range defined by variables, not constants. – vasja Jul 3 '12 at 14:02
no-no, i mean (c in (a:b)) as a range. chain-comparisons are worked. – loldop Jul 3 '12 at 14:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.