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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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 lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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