I have a table lokks like this
Id. Datetime
A2 0NOV05:03:49:19
A2. 0NOV05:02:49:19
A3. 0NOV05:06:49:19
A3. 0NOV05:08:49:19
What i need is to pull the last entry obo
Like this
Id. Datetime
A2 0NOV05:03:49:19
A3. 0NOV05:08:49:19
Both are relatively easy:
data want;
set have;
by id;
* To get last entry;
if last.id;
* To get first entry;
if first.id;
run;
Both are relatively easy:
data want;
set have;
by id;
* To get last entry;
if last.id;
* To get first entry;
if first.id;
run;
You should consider reviewing the BY group processing chapter in the documentation. It includes some good information on how FIRST/LAST work and the available options.
@Gil_ wrote:
I have a table lokks like this
Id. Datetime
A2 0NOV05:03:49:19
A2. 0NOV05:02:49:19
A3. 0NOV05:06:49:19
A3. 0NOV05:08:49:19
What i need is to pull the last entry obo
Like this
Id. Datetime
A2 0NOV05:03:49:19
A3. 0NOV05:08:49:19
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.