BookmarkSubscribeRSS Feed
omega1983
Calcite | Level 5

I have totalled a column of numbers

ID         amt            difference

11        -250           125

11         125           125 /*only want to show this number*/

12       -250          -250

proc sql;

create table test as

select id, sum(

case when reg_num = 'w' then amt

        when reg_num = 'y' then amt

   else 0 end)as difference

from main

group by ln_no;

quit;

In the case of ID 11, I want to show the 125 difference in the second instance of the same ID.  So I want to show ID on row 2 and leave row 1 blank.  In the case of ID 12 I want to show the difference because it is the first and only instance.

1 REPLY 1
Linlin
Lapis Lazuli | Level 10

data step is much easier:

data have;

input ID         amt            difference;

cards;

11        -250           125

11         125           125

12       -250          -250

;

data want;

set have;

by id;

if not last.id then difference=.;

proc print;run;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 717 views
  • 0 likes
  • 2 in conversation