🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 12-13-2018 02:09 PM
(1167 views)
I'm using the online SAS Studio I'm trying to create a new variable while doing a then do loop but it doesn't seem to work, any suggestions?
This is my code....
Data golf;
infile '/home/c153469110/golf.txt';
input Distance_yards 18-22
Golfer_ID 28-29
Brand $ 39;
run;
proc print data=golf;
run;
Data golf;
set golf;
if Distance_Yards<290 then Distance_Catagory='Poor';
else if Distance_Yards >=290 then Distance_Catagory='Average';
else if Distance_Yards >310 then Distance Catagory='Above Average';
run;
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Your third option will never be reached. Expand your second condition:
else if Distance_Yards >=290 and Distance_Yards <= 310 then Distance_Catagory='Average';
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Your third option will never be reached. Expand your second condition:
else if Distance_Yards >=290 and Distance_Yards <= 310 then Distance_Catagory='Average';
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
It’s not working for me
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
It seems you have an invalid variable name, change the last assignment:
then Distance_Catagory='Above Average';
Note the underline that replaces the blank.
If that was not the reason, be more specific what "does not work" and post the log. Use the {i} button for that.