BookmarkSubscribeRSS Feed
BrahmanandaRao
Lapis Lazuli | Level 10
data dsn2;
set sashelp.class;
n=1;
do while (n<5);
 n+1;	
end;output;
run;

i want below output using do while and do until loops

 

Name Sex Age Height Weight
AlfredM1469.0112.5
AliceF1356.584.0
BarbaraF1365.398.0
CarolF1462.8102.5
HenryM1463.5102.5
2 REPLIES 2
Tom
Super User Tom
Super User

The code you posted is just going to create a new variable named N with the same value on every observation, so the output will look nothing like what you say you want.

 

Can you describe in words what you want as the output?

 

Looks like you just want to use one of these data steps instead, none of which need DO WHILE or DO UNTIL.

data want;
  set sashelp.class;
  if _n_<= 5;
run;

data want;
  set sashelp.class;
  if _n_>5 then stop;
run;

data want;
  set sashelp.class (obs=5);
run;

 

PaigeMiller
Diamond | Level 26

Generally, DO WHILE is not for selecting rows, or iterating over rows.

 

data dsn2;
set sashelp.class(obs=5);
run;

or

 

data dsn2;
     set sashelp.class;
     if _n_<=5;
run;

 

--
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
  • 2 replies
  • 302 views
  • 0 likes
  • 3 in conversation