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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 4 replies
  • 1002 views
  • 4 likes
  • 3 in conversation