Hi,
New SAS user here!
I'm trying to create a new variable based on the max of another variable associated with unique student IDs. Here's an example of the dataset. I'm trying to create the variable titled "MaxTerm". How would I specify that I'm looking for the max term for each student ID?
Thanks the help!
| Student_ID | Term | MaxTerm |
| 000001 | 1 | 4 |
| 000001 | 2 | 4 |
| 000001 | 3 | 4 |
| 000001 | 4 | 4 |
| 000002 | 1 | 5 |
| 000002 | 2 | 5 |
| 000002 | 3 | 5 |
| 000002 | 4 | 5 |
| 000002 | 5 | 5 |
proc sql;
create table want as
select *, max(term) as max_term
from have
group by student_id
;
quit;
Is your Maxterm variable numeric or character? If character you my get unexpected results.
Example:
data junk; x='15'; output; x='5'; output; run; proc sql; select max(x) from junk; quit;
will return '5' as the maximum value because when comparing characters '5' is greater than '1'. The second character only comes into consideration when the first character is the same.
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.