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

Hi Sir,

 

I have a data set : HAVE

and i want to get output WANT mentioned in the attachment  :

I have already tried below option but not working for me.

PROC SORT DATA= HAVE;

BY NAME;

RUN;

 

DATA WANT;

SET  HAVE;

BY NAME;

IF FIRST.NAME THEN SUM_NO=0

ELSE SUM_NO+1;

RUN;

 

Kindly help me to find the result.

 

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

You get the same results without RETAIN, which is not needed for the sum statements.

 

Example:

PROC SORT DATA= sashelp.class out=have;
  BY sex;
DATA WANT;
  SET  HAVE;
    BY sex;
  IF FIRST.sex 
    THEN SUM_NO=0;
    ELSE SUM_NO+1;
RUN;

I think the original post from @karthik18 is missing a semi-colon, and that may be why it doesn't work. So, @karthik18 please examine your code carefully for a place where you need a semi-colon.

 

Of course, this still doesn't produce a sum or a count, it produces a "count" where the first record in each group is always 0.

--
Paige Miller

View solution in original post

3 REPLIES 3
PaigeMiller
Diamond | Level 26

Many of us will not open attachments. If it shows the desired output, put a screen capture in your reply.

 

From your description, I don't see where "pivot table" applies here. Also, PROC SUMMARY gets these groupwise sums pretty quickly and easily.

 

proc summary data=have nway;
    class name;
    var numeric_variable;
    output out=want n=sum_no;
run;
--
Paige Miller
PhilC
Rhodochrosite | Level 12
PROC SORT DATA= HAVE;
  BY NAME;
DATA WANT;
  SET  HAVE;
    BY NAME;
  retain SUM_NO;
  IF FIRST.NAME 
    THEN SUM_NO=0
    ELSE SUM_NO+1;
RUN;

You'll have better results if you use a RETAIN statement.  Previously, in your given code, SUM_NO was set to MISSING every time the data step loaded another record.

PaigeMiller
Diamond | Level 26

You get the same results without RETAIN, which is not needed for the sum statements.

 

Example:

PROC SORT DATA= sashelp.class out=have;
  BY sex;
DATA WANT;
  SET  HAVE;
    BY sex;
  IF FIRST.sex 
    THEN SUM_NO=0;
    ELSE SUM_NO+1;
RUN;

I think the original post from @karthik18 is missing a semi-colon, and that may be why it doesn't work. So, @karthik18 please examine your code carefully for a place where you need a semi-colon.

 

Of course, this still doesn't produce a sum or a count, it produces a "count" where the first record in each group is always 0.

--
Paige Miller

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 16. 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
  • 3 replies
  • 551 views
  • 0 likes
  • 3 in conversation