BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Nishant_saxena
Calcite | Level 5

I am stuck to this prob;em please help me out:

 

A bike deliver a milage of 20 miles per gallon. write a code in SAS so that the code stops generating observations when distance reaches 250 miles or when 10 gallons of fuel  have ben used.

 

1 ACCEPTED SOLUTION

Accepted Solutions
Jagadishkatam
Amethyst | Level 16

Consider that you have a dataset with miles and you want to create a new dataset creating a new variable and if this new variable values reaches the 250 mark then you need to stop. Use the do until as i used.

 

data have;
do miles=100 to 1000 by 50;
output;
end;
run;

data want;
do until(mile<=250);
set have;
mile=miles;
end;
run;
Thanks,
Jag

View solution in original post

5 REPLIES 5
art297
Opal | Level 21

What have you tried?

 

Art, CEO, AnalystFinder.com

Nishant_saxena
Calcite | Level 5

I was trying some stuff like:

 

data milage;
do gallons= 1 to 10;
while(distance<250);
run;

Jagadishkatam
Amethyst | Level 16

Consider that you have a dataset with miles and you want to create a new dataset creating a new variable and if this new variable values reaches the 250 mark then you need to stop. Use the do until as i used.

 

data have;
do miles=100 to 1000 by 50;
output;
end;
run;

data want;
do until(mile<=250);
set have;
mile=miles;
end;
run;
Thanks,
Jag
Nishant_saxena
Calcite | Level 5

This solution is exactly working

Thanks a lot

MikeZdeb
Rhodochrosite | Level 12

Hi, do you really need a loop ...


data want;
set have (where=(miles le 250));
mile=miles;
run;

 

If you don't want that new variable, don't use "mile=miles"

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of 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
  • 5 replies
  • 1529 views
  • 0 likes
  • 4 in conversation