BookmarkSubscribeRSS Feed
Ronein
Meteorite | Level 14

Hello

Here are some examples to create serial number.

Some of them are working and some not .

I want to refresh my memory why Example1 is working without Retain statement?

Does it mean that there is hidden Retain that is working here even if we didn't write Retain statement?

Will it also work automatically when using sum(seq,1) or just when using seq+1 ?

Data have;
Input profit;
cards;
10
40 
50
;
run;

Data ex1:
set have;
seq+1;
Run;

Data ex2:
set have;
sum(seq,1);
Run;


Data ex3:
set have;
Retain seq 0;
seq+1;
Run;


Data ex4:
set have;
Retain seq 0;
seq=seq+1;
Run;
1 REPLY 1
PaigeMiller
Diamond | Level 26

seq+1; has an implied RETAIN. https://documentation.sas.com/?docsetId=lestmtsref&docsetTarget=n1dfiqj146yi2cn1maeju9wo7ijs.htm&doc...

 

Will it work for  your other examples? Run the code and see!

 
--
Paige Miller

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 296 views
  • 0 likes
  • 2 in conversation