BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SAS_inquisitive
Lapis Lazuli | Level 10

The two prgrams meant to create a macro variable &_name_. Is stop statment redundant in first progam as program will terminate eventually anyway?

 

data _null_;
	set sashelp.class;

	if _n_=1 then
		do;
			call symput('_name_',name);
			stop;
		end;
run;


data _null_;
	set sashelp.class;

	if _n_=1 then
		do;
			call symput('_name_',name);
		end;
run;

%put &_name_;

 

1 ACCEPTED SOLUTION

Accepted Solutions
data_null__
Jade | Level 19

Stopping when the work is done makes it look like you know what you're doing.

View solution in original post

4 REPLIES 4
data_null__
Jade | Level 19

STOP; prevents the data step from doing nothing for the other 18 records in SASHELP.CLASS.

SAS_inquisitive
Lapis Lazuli | Level 10
@ data_null_, thanks. I have seen people coding both ways.
data_null__
Jade | Level 19

Stopping when the work is done makes it look like you know what you're doing.

Tom
Super User Tom
Super User

Actually if you have the STOP statement you do not need the IF statement.

data _null_;
  set sashelp.class;
  call symput('_name_',name);
  stop;
run;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1186 views
  • 4 likes
  • 3 in conversation