BookmarkSubscribeRSS Feed
santhosh
Fluorite | Level 6
i have sample data set data test; input area $ no; datalines; A 10 A 20 A 30 B 10 B 20 C 30 ; i want output as SNo area no 1 A 10 2 A 20 3 A 30 1 B 10 2 B 20 1 C 30
2 REPLIES 2
Jbaax
Fluorite | Level 6

Have you forget to say "Hello" ???


Even if I've deduce your request, you should be a little more clear.

 

To do this you can use the operator first. You should copy your table test BY area and add the statements :

if first.area then Sno=1;
else Sno+1;

Regards,
Jbaax

Kurt_Bremser
Super User
data test;
input area $ no;
datalines;
A 10
A 20
A 30
B 10
B 20
C 30
;
run;

data want;
set test;
by area;
retain serno;
if first.area
then serno = 1;
else serno + 1;
run;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 2 replies
  • 956 views
  • 0 likes
  • 3 in conversation