Is it possible to use the first. and last. statement within certain groups?
E.g. I have a variable with social security numbers and a variable with years. I have multiple person records each year. I would like to use the first. statement to identify the first observation of each social security number, but for each year. Is this possible?
Corrected version
Data out;
set in;
by social_security_number year;
if first.year then output;
run;
Explanation
You can have numerous by variables, and for each one first and last automatic variables are generated.
In this case first.social_security_number would return only one record per social_security_number. First.year is updated every time there is a change in the preceding by variable(s) as well as when there is a change in year.
Richard
Short answer: yes ....
SAS(R) 9.3 Language Reference: Concepts, Second Edition (How the DATA Step Identifies BY Groups)
An example is mot easy found bit it works (long time ago remembering having done)
Data out;
set in;
by social_security_number year;
first.name then output;
run;
Corrected version
Data out;
set in;
by social_security_number year;
if first.year then output;
run;
Explanation
You can have numerous by variables, and for each one first and last automatic variables are generated.
In this case first.social_security_number would return only one record per social_security_number. First.year is updated every time there is a change in the preceding by variable(s) as well as when there is a change in year.
Richard
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.