BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jenim514
Pyrite | Level 9

Hi!  more questions!

 

I have output results that look like this form summing by subject and reset to zero with each new date.  How can I output just the last observation BY date ( so I just get the final sum by date and not the running total)?  These are results from same subject.

 

02OCT2017 81 81
02OCT2017 22 103

02OCT2017 39 142
11DEC2017 93 93
11DEC2017 23 116
11DEC2017 57 173

 

This is outputting the last subject of all dates, but I need last subject at each new date encountered.


data out;
set in
by patient dat;
if last.patient;
run;

1 ACCEPTED SOLUTION

Accepted Solutions
1 REPLY 1
novinosrin
Tourmaline | Level 20

if last.date;

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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