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
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;
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 save with the early bird rate—just $795!
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.