BookmarkSubscribeRSS Feed
RebeccaJW
Calcite | Level 5
data raw; set rawdata;
     keep day year title number;
proc sort data=raw nodupkey; by day year; run;

How could I modify this code to keep the day and year with the highest number if raw data contained multiple different values of numbers, instead of just a single value?

 

Thank you!

1 REPLY 1
novinosrin
Tourmaline | Level 20
data raw; set rawdata;
     keep day year title number;
proc sort data=raw ; 
by day year descending number; run;

data want;
set raw;
by day year;
if first.year;
run;

Would the above work?

CFC_SAS_Communities_400x225.jpg

Call for content now open!

It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.

Submit your proposal →

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1135 views
  • 0 likes
  • 2 in conversation