Link to home
Start Free TrialLog in
Avatar of morinia
moriniaFlag for United States of America

asked on

START option in SAS

Experts,

What does the "START=" option do in a Data Step in SAS?
Avatar of Aloysius Low
Aloysius Low
Flag of Singapore image

doesn't sound familiar.. got a code fragment to share?
Avatar of morinia

ASKER

Data filea;
      Set FileB;
      Start = ID;
      Output;
      If last then do;
          Start= .;
           Output;
        End;
Run;
I don't think it is that important.  Because of the use I'd so many data steps I believe this code has been around for a while and I have not used it in any code recently.
ASKER CERTIFIED SOLUTION
Avatar of Aloysius Low
Aloysius Low
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial